body, html {
    height: 80%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #eaeef3;
    font-size: 16px;
    color: #272727;
}

#wait-overlay {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: wait;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.login-form, .forgot-password-form {
    display: flex;
    flex-direction: column;    
}

.login-form label, .forgot-password-form label {
    margin-bottom: 5px;
}

.login-form input, .forgot-password-form input {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 200px;
}

.login-form button, .forgot-password-form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    margin-bottom: 7px;
}

.login-form button:hover {
    background-color: #0056b3;
}

#forgot-password-btn, #cancel-forgot-password {
    font-size: 12px;
    color: #444;
    cursor: pointer;
}