/* Style pour le formulaire */
form {
    margin: 20px auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Style pour les étiquettes */
form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Style pour les champs de saisie */
form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Assurez-vous que la largeur inclut la bordure */
}

/* Style pour le bouton */
form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Style pour le bouton au survol */
form input[type="submit"]:hover {
    background-color: #45a049;
}

/* Style pour les messages d'erreur */
.error {
    color: red;
    font-size: 14px;
}
