/* Style général */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

/* Conteneur du formulaire */
form {
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

/* Titre du formulaire (texte ajouté en PHP ou HTML avant le formulaire) */
h1 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}

/* Champs de saisie */
form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9em;
    color: #555;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

/* Bouton de soumission */
form button {
    width: 100%;
    background: #fbabd6;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background: #fbabd6;
}

/* Lien pour mot de passe oublié */
form a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    font-size: 0.9em;
    color: #fbabd6;
    transition: color 0.3s ease;
}

form a:hover {
    color: #fbabd6;
}

/* Message d'erreur ou d'information */
.error-message {
    color: rgb(115, 129, 241);;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.success-message {
    color: #fbabd6;
    font-size: 0.9em;
    margin-bottom: 10px;
}
