/* Background image */
body {
    background-image: url('../img/background_login2.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login container */
.login-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 100%;
} 

.login-form {
    margin-top: 20px;
}

.login-btn {
    width: 100%;
    background-color: #f57c00;
    border-color: #f57c00;
}

.login-btn:hover {
    background-color: #e66000;
    border-color: #e66000;
}

.reset-btn {
    width: 100%;
    margin-top: 10px;
    background-color: #ffc107;
    border-color: #ffc107;
}

.reset-btn:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

.error-message {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

/* OTP container */
.otp-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

/* Request OTP button */
.request_otp {
    width: 100%;
    margin-top: 10px;
    background-color: #ffc107;
    border-color: #ffc107;
}
.request_otp:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

/* Verify OTP button */
.otp-btn {
    width: 100%;
    background-color: #f57c00;
    border-color: #f57c00;
}
.otp-btn:hover {
    background-color: #e66000;
    border-color: #e66000;
}