.reset-container {
    max-width: 450px;
    margin: 50px auto;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.reset-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* Styling input fields */
.reset-container input, 
.reset-container select {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

/* Button styling */
.reset-container button {
    background: #007bff;
    color: white;
    padding: 12px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    border-radius: 6px;
    width: 100%;
}

.reset-container button:hover {
    background: #0056b3;
}

/* Security question section */
.security-section {
    margin-top: 20px;
    padding: 15px;
    background: #e9ecef;
    border-radius: 8px;
}

/* Reset password form */
#reset-password-form {
    display: none; /* Hidden until verified */
    margin-top: 25px;
    padding: 20px;
    background: #f1f3f5;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Error messages */
.error-message {
    font-size: 14px;
    color: red;
    margin-top: -10px;
    margin-bottom: 12px;
    font-weight: bold;
}

/* Success messages */
.success-message {
    font-size: 14px;
    color: green;
    margin-top: -10px;
    margin-bottom: 12px;
    font-weight: bold;
}


#reset-password-form {
    display: none; /* Hidden until identity verification */
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#reset-password-form label {
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

#reset-password-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#reset-password-form button {
    background: #28a745; /* Green for confirmation */
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

#reset-password-form button:hover {
    background: #218838;
}

/* Error message styling */
.error-message {
    font-size: 12px;
    color: red;
    margin-top: -10px;
    margin-bottom: 10px;
}

