/* Styles for forgot-password.html, aiming for a similar feel to login.html */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f4f7f6; /* Light background */
    color: #333;
    margin: 0;
    padding-top: 70px; /* Adjust if your navbar height is different */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 70px); /* Full height minus navbar */
    box-sizing: border-box;
}

.auth-container {
    width: 100%;
    max-width: 420px; /* Max width for the auth card */
    margin: 20px auto; /* Centering the container */
    padding: 20px;
    box-sizing: border-box;
}

.auth-card {
    background-color: #ffffff; /* White card background */
    padding: 30px 40px; /* More padding inside the card */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Softer shadow */
    text-align: center; /* Center text inside the card */
}

.auth-card h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.8em; /* Larger heading */
    font-weight: 600;
}

.auth-subheading {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 25px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
    text-align: left; /* Align labels and inputs to the left */
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 0.9em;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px; /* Comfortable padding */
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.2s ease-in-out;
}

.form-group input[type="email"]:focus {
    border-color: #007bff; /* Highlight on focus */
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.btn.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    width: 100%; /* Full width button */
    transition: background-color 0.2s ease-in-out;
}

.btn.btn-primary:hover:not(:disabled) {
    background-color: #0056b3;
}

.btn.btn-primary:disabled {
    background-color: #a0c7e4; /* Lighter color when disabled */
    cursor: not-allowed;
}

.message-area {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 0.9em;
    text-align: center;
}
.message-area.success {
    background-color: #d4edda; /* Light green for success */
    color: #155724;
    border: 1px solid #c3e6cb;
}
.message-area.error {
    background-color: #f8d7da; /* Light red for error */
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.error-message {
    color: #dc3545; /* Red for error messages */
    font-size: 0.85em;
    margin-top: 5px;
    display: block; /* Ensure it takes its own line */
}

.auth-links {
    margin-top: 25px;
    font-size: 0.9em;
}

.auth-links a {
    color: #007bff;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}