body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f1f1f1;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.login-page-container {
    background-color: #70b3e3;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
    align-items: center;
}

.login-header {
    margin-bottom: 15px;
}

.login-logo {
    width: 80px;
}

.login-title {
    font-size: 32px;
    color: #015477;
    font-weight: 700;
    margin-top: 10px;
    font-family: 'Montserrat Alternates';
}

/* Adjust form title font size */
.form-title h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #015477;
}

.form-title p {
    font-size: 14px;
    color: #f1f1f1;
    margin-bottom: 20px;
}

/* Styling for form inputs */
.login-form input {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    width: 95%;
    margin-top: 10px;
    background-color: #f1f1f1;
}

/* Adjust the login button size and hover effect */
.login-btn {
    background-color: #005477;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.login-btn:hover {
    background-color: #e3a070;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Link hover effect */
#reset_link {
    color: #015477;
    text-decoration: none;
    font-size: 14px;
}

#reset_link:hover {
    text-decoration: underline;
}
/* Back to home link styling */
.back-to-home {
    text-align: center;
    margin-top: 20px; /* Adds space below the login container */
    position: relative;
    top: 20px; /* Adjusts placement */
}

.back-to-home a {
    font-size: 14px;
    color: #015477;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-home a:hover {
    color: #e3a070;
    text-decoration: underline;
}
