/* Formulaire réinitialisation mot de passe uniquement */
#reset-password-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f5f5f5;
    padding: 1rem;
}

#reset-password-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

#reset-password-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

#reset-password-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: #555;
}

#reset-password-form input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#reset-password-form button {
    width: 100%;
    padding: 0.7rem;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

#reset-password-form button:hover {
    background-color: #218838;
}
