form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
}

/* Titres et labels */
form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

form label {
    display: block;
    font-weight: bold;
    color: #ffffff;
}

/* Champs texte et textarea */
form input[type="text"],
form input[type="email"],
form select,
form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.2s all;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form select:focus,
form textarea:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
    outline: none;
}

/* Boutons */

.button-container {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    box-sizing: border-box; /* inclut padding du parent */
}

form button {
    padding: 50px 50px;
    min-width: 150px; /* ou width fixe selon besoin */
    border: none;
    cursor: pointer;
    margin-right: 0;
}

form button[type="reset"] {
    background-color: #ffffff00;
}


/* Responsive */
@media (max-width: 600px) {
    form {
        padding: 20px;
        margin: 20px;
    }
}