/* 1. Conteneur principal aligné sur vos photos */
.contact-message-feedback-form {
    max-width: 480px;
    margin: 50px auto;
    font-family: 'Montserrat', sans-serif; /* À adapter selon votre police */
}

/* 2. Style des Libellés (Labels) */
.contact-message-feedback-form label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
    color: #1a1a1a;
}

/* 3. Style des Champs de saisie */
.contact-message-feedback-form input[type="text"],
.contact-message-feedback-form input[type="email"],
.contact-message-feedback-form input[type="tel"],
.contact-message-feedback-form input[type="date"],
.contact-message-feedback-form select,
.contact-message-feedback-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 0; /* Look minimaliste angulaire */
    background-color: #fff;
    box-sizing: border-box;
    font-size: 14px;
}

/* 4. Focus sur les champs */
.contact-message-feedback-form input:focus, 
.contact-message-feedback-form textarea:focus {
    border-color: #000;
    outline: none;
}

/* 5. Bouton "Envoyer" (Style identique au footer) */
.contact-message-feedback-form .form-submit {
    width: 100%;
    background-color: #fff !important;
    color: #000 !important;
    border: 2px solid #fff; /* Pour simuler l'effet du bouton blanc sur fond noir */
    padding: 15px 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Si le fond de votre page est blanc, utilisez ceci pour inverser : */
    background-color: #1a1a1a !important;
    color: #fff !important;
}

.contact-message-feedback-form .form-submit:hover {
    background-color: #444 !important;
    color: #fff !important;
}

/* 6. Nettoyage des descriptions (GSM, Dispos) */
.contact-message-feedback-form .description {
    font-size: 11px;
    font-style: italic;
    color: #777;
    margin-top: -15px;
    margin-bottom: 15px;
}