body {
    display: flex; 
    flex-direction: column; 
    align-items: center;
    background-color: #f4f4f9;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    height: 100vh;
}

h1 {
    font-weight: normal;
}

.login-container {
    display: flex; 
    flex-direction: column; 
    margin-top: 50px; 
    border: 1px solid rgba(0,0,0,.125); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px; 
    width: fit-content; 
    text-align: center;
    background-color: white;
    border-radius: .25rem;
}

.login-content {
    height:auto;
}

.login-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 3px;
    width: 100%;
}

#login-form {
    margin-bottom: 5px;
}

.icon-box {
    background-color: #f4f4f9;
    padding: 5px;
    align-items: center;
    border-right: 1px solid rgba(0, 0, 0, .125);
    margin-right: 8px; /* Ensures spacing between the icon and text */
}

#email, 
#password,
#otp_code {
    width: 100%;
    border: none;
}

#login-button,
#forgot-submit,
#verify-button {
    width: 100%;
    font-size: 1.25rem;
    background-color: #007bff;
    border: none;
    border-radius: .25rem;
    padding: .5rem;
    color: white;
}

#login-button:hover,
#forgot-submit:hover {
    background-color: #0056b3;
}

#forgot-button {
    margin-left: auto;
    margin-right: auto;
    border: none;
    background-color: white;
    color: #767678;
    padding: .25rem;
    border-radius: .25rem;
    text-decoration: none;
    width: fit-content;
}

#forgot-button:hover {
    background-color: #f4f4f9;
}

.footer-text {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

.centered-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensures that both elements are vertically centered */
}

