/* Styles for both forgot_password.php and reset_password.php */
.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #343a40;
    margin-bottom: 20px;
    font-weight: bold;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="email"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ced4da;
    font-size: 1rem;
}

input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #2a4e2d;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

button[type="submit"] {
    padding: 10px;
    background-color: #2a5334b0;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #2d422c;
}

.alert {
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}