/* Base styling for the message area */
.message {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.2em;
    padding: 0.75rem;
    border-radius: 8px;
    color: #28a745; /* Default color from your original file */
}

/* Style for a success message (e.g., "Email sent!") */
.message.success {
    background-color: #1a4a3c; /* Dark green background */
    color: #d1e7dd; /* Light green text */
    border: 1px solid #a3cfbb;
}

/* Style for an error message (e.g., "Email not found.") */
.message.error {
    background-color: #5d2222; /* Dark red background */
    color: #f8d7da; /* Light pink text */
    border: 1px solid #f5c6cb;
}

/* === NEW: Styling for the "Back to Login" link === */
.back-to-login {
    text-align: center;
    margin-top: 1.5rem;
}

.back-to-login a {
    color: #a0aec0; /* A subtle, secondary color */
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-login a:hover {
    color: #ffffff; /* Brightens on hover */
    text-decoration: underline;
}