/* ==========================================================================
  01. SPECIFIC STYLES
  =========================================================================== */

.contact-form input  {
    display: block;
    width: 100%;
    height: 55px;    
    padding: 0.375rem 0.75rem;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #ccc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: all 50ms ease-in-out;    
    margin-bottom: 22px;
}

.contact-form .input-text  {
    display: block;
    width: 100%;
    height: 55px;    
    padding: 0.375rem 0.75rem;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #ccc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: all 50ms ease-in-out;    
    margin-bottom: 22px;
}

.contact-form .input-list  {
    display: block;
    width: 100%;
    height: 55px;    
    padding: 0.375rem 0.75rem;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #ccc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: all 400ms ease-in-out;    
    margin-bottom: 22px;
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.contact-form input:focus, .contact-form .input-list:focus, .contact-form .input-text:focus  {
    outline: none;
    border: 2px solid #009ddc;
}

.contact-form  .input-error {
    border:2px solid #e74c3c;
}

.contact-form .input-error:focus  {
    outline: none;
    border: 2px solid #e74c3c;
}

.contact-form .errors {
    font-size: 13px;
    color: #e74c3c;
    margin-bottom: 20px;
    margin-top: -15px;
    display: none;
}

#error-recaptcha {
    margin-bottom:0;
    margin-top:0;
}
.captcha-wrapper {
    transform: scale(1); /* Ajustez ce facteur de mise à l'échelle selon vos besoins */
    transform-origin: 0 0; /* Ajuste le point d'origine de la transformation */
    margin-bottom:10px;
}
@media (min-width: 300px) and (max-width: 767.95px) {
    .captcha-wrapper {
        transform: scale(0.77); /* Vous pouvez ajuster cette valeur pour de meilleurs résultats sur mobile */
    }
}
@media (max-width:299.95px){
    .captcha-wrapper {
        transform: scale(0.65); /* Vous pouvez ajuster cette valeur pour de meilleurs résultats sur mobile */
    }
}
