/* ===== CHECKBOX - White border unchecked, PINK when checked ===== */
#champ_rgpd input[type="checkbox"],
.wpcf7-acceptance input[type="checkbox"] {
appearance: none !important;
-webkit-appearance: none !important;
width: 20px !important;
height: 20px !important;
min-width: 20px !important;
border: 2px solid #ffffff !important;
border-radius: 3px !important;
background-color: transparent !important;
cursor: pointer !important;
position: relative !important;
vertical-align: middle !important;
}
/* PINK when checked + white checkmark */
#champ_rgpd input[type="checkbox"]:checked,
.wpcf7-acceptance input[type="checkbox"]:checked {
background-color: #e91e8c !important;
border-color: #e91e8c !important;
}
#champ_rgpd input[type="checkbox"]:checked::after,
.wpcf7-acceptance input[type="checkbox"]:checked::after {
content: '✓' !important;
position: absolute !important;
top: -3px !important;
left: 2px !important;
color: #ffffff !important;
font-size: 14px !important;
font-weight: bold !important;
}
/* ===== SUCCESS message ===== */
.wpcf7-mail-sent-ok {
display: block !important;
background-color: #4CAF50 !important;
color: #ffffff !important;
border: none !important;
padding: 12px 20px !important;
border-radius: 4px !important;
font-weight: bold !important;
text-align: center !important;
margin-top: 15px !important;
}
/* ===== ERROR messages ===== */
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
display: block !important;
background-color: #e53935 !important;
color: #ffffff !important;
border: none !important;
padding: 12px 20px !important;
border-radius: 4px !important;
font-weight: bold !important;
text-align: center !important;
margin-top: 15px !important;
}
.wpcf7-response-output {
display: block !important;
margin-top: 15px !important;
}