/* General Styles */
body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #f9fbfd;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 500px;
    margin: 20px auto;
    background-color: #ffffff; /* White background for clarity */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Forgot Password Container */
.forgot-password-container {
    text-align: center;
}

.forgot-password-container h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

/* Flash Messages */
.flashes {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.flashes li {
    background-color: #ffdddd;
    color: #d9534f; /* Red for error messages */
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* Forgot Password Form */
.forgot-password-form div {
    margin-bottom: 15px;
    text-align: left;
}

.forgot-password-form label {
    display: block;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.forgot-password-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    background-color: #f9fbfd;
    transition: border-color 0.3s ease;
}

.forgot-password-form input:focus {
    border-color: #007bff; /* Blue border on focus */
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25); /* Soft blue glow */
}

.forgot-password-form button {
    width: 100%;
    padding: 10px 15px;
    font-size: 1.1em;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.forgot-password-form button:hover {
    background-color: #0056b3;
    transform: scale(1.02); /* Subtle zoom effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
    }

    .forgot-password-container h1 {
        font-size: 1.8em;
    }

    .forgot-password-form button {
        font-size: 1em;
    }
}
