#formulaire-responsive .rang-form {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}

#formulaire-responsive .demi-colonne,
#formulaire-responsive .colonne {
    width: 100%;
}

@media (min-width: 768px) {
    #formulaire-responsive .demi-colonne {
        width: calc(50% - 30px);
    }
}

#formulaire-responsive input[type="text"],
#formulaire-responsive input[type="email"],
#formulaire-responsive input[type="tel"],
#formulaire-responsive textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #b97b36;
    padding: 10px 5px;
    font-size: 16px;
    font-family: inherit;
    color: #000;
    border-radius: 0;
    box-shadow: none;
    transition: border-color 0.3s ease;
}

#formulaire-responsive input:focus,
#formulaire-responsive textarea:focus {
    outline: none;
    border-color: #000;
}

#formulaire-responsive textarea {
    resize: vertical;
    min-height: 120px;
}

/* Règle spécifique pour le textarea de Contact Form 7 */
.wpcf7-form-control-wrap textarea.wpcf7-textarea {
    height: 100px !important;
    min-height: 100px !important;
    max-height: 200px !important;
}

#formulaire-responsive ::placeholder {
    color: #999;
}

#formulaire-responsive .wpcf7-acceptance {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

#formulaire-responsive .wpcf7-acceptance input[type="checkbox"] {
    margin-right: 10px;
}

#formulaire-responsive input[type="submit"] {
    background: transparent;
    color: #b97b36;
    border: none;
    border-bottom: 1px solid #b97b36;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.1s ease;
    display: inline-block;
    margin: 20px auto 0;
}

#formulaire-responsive input[type="submit"]:hover {
    color: #000000 !important;
    border-bottom: 1px solid #000000 !important;
}

.theplus-contact-form.style-1.plus-cf7-label form.wpcf7-form label,
.theplus-contact-form.style-1.plus-cf7-custom form.wpcf7-form .tp-cf7-outer {
    margin-bottom: 20px;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 4px;
    box-shadow: 0 3px 25px -7px rgba(255, 255, 255, 0.48) !important;
    text-align: left;
}

label, legend {
    color: #777;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.theplus-contact-form label.input__checkbox_btn .toggle-button__icon {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #ccc !important;
    border-radius: 6px;
    height: 24px;
    width: 24px;
    background: #fff !important;
    margin-right: 5px;
    position: relative;
}

.theplus-contact-form .input__checkbox_btn .toggle-button__icon:before {
    transform: translate3d(-50%, -50%, 0) !important;
    color: rgba(0, 0, 0, 0.59) !important;
}

.theplus-contact-form .input__checkbox_btn .toggle-button__icon:after,
.theplus-contact-form .input__checkbox_btn .toggle-button__icon:before {
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 13px;
    text-align: center;
    color: #000;
    background: transparent;
    transform: translate3d(-50%, 200%, 0);
    animation: checkbox-hide 0.2s ease-out;
    transition: none;
} 