
body {
    background-image: url('../images/bffbg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: #ffffff; /* Make links white */
}

/* Login Form Styles */
#login-form {
    background-color: #ffffff;
    padding: 20px;
    margin-top: 150px;
    border: 1px solid #cde0de;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1),
                0 5px 15px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000; /* Set text color to black */
}

#login-form h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #000000; /* Set heading color to black */
}

#login-form input,
#login-form select {
    width: calc(100% - 20px);
    padding: 15px;
    margin-bottom: 10px;
    border: 2px solid #00897b;
    border-radius: 10px;
    font-size: 16px;
    background: #eceff1;
    color: #333;
}

/* Login Form Button Styles */
#login-form button {
    background-color: #43a047;
    color: white;
    cursor: pointer;
    padding: 12px 25px;
    margin: 10px auto; /* Center button horizontally */
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: block; /* Make the button block-level to ensure it's centered */
}

#login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#login-form button:hover {
    background-color: #388e3c;
}

@media (max-width: 768px) {
    #login-form {
        width: 90%;
        margin-top: 40px;
    }
}

h2 {
    text-align: center;
    line-height: normal;
}

.logo {
    width: 150px;
    height: auto;
}

.registration-links {
    margin-right: auto;
}
