/* General body styles */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(90deg, rgba(1, 123, 234, 0.9), rgba(246, 0, 1, 0.9));
}

/* Logo container styles */
.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo-image {
    width: 120px; /* Adjust the size of the image as needed */
    height: auto; /* Maintain aspect ratio */
}

/* Login container styles */
.login-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(146, 162, 189, 0.2);
    text-align: center;
}

/* Header styles */
.login-container h1 {
    margin-bottom: 0.5rem;
}

.login-container h2 {
    margin-bottom: 1rem;
    color: #035970;
}

/* Input field styles */
.login-container input {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border-radius: 4px;
    border: 1px solid #abc4cf;
    background-color: #dee5ec;
    color: #000000;
}

/* Button styles */
.login-container button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background-color: #035970;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-container button:hover {
    background-color: #548d9e;
}

/* Link styles */
.login-container p {
    margin-top: 1rem;
    color: #92a2bd;
}

.login-container a {
    color: #548d9e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-container a:hover {
    color: #035970;
}
