/* FORMULARIO DE CONTACTO */


input#nombre,input#apellidos,input#telefono,input#email,input#mensaje {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    background-color: transparent !important;
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid var(--c-amarillo)
}

#form-contacto .datos-usuario {
    gap: 12px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between
}

#form-contacto .datos-usuario .full {
    flex: 0 0 100%
}

#form-contacto .datos-usuario .half {
    flex: 0 0 47%
}

#form-contacto textarea.wpcf7-form-control {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    background-color: transparent !important;
    margin-top: 5px;
    width: 100%;
    max-height: 120px;
    border-bottom: 1px solid var(--c-amarillo)
}

#form-contacto a {
    color: var(--c-amarillo);
    transition: all .4s ease
}

#form-contacto a:hover {
    color: var(--c-blanco)
}

#form-contacto .txt-legal {
    font-size: .75rem;
    line-height: 1.15em
}

#form-contacto .txt-legal p {
    margin-bottom: 0
}

.txt-req {
    color: red;
}

/* RESPONSIVE */

@media (max-width: 600px) {
    #form-contacto .datos-usuario .half {
        flex: 0 0 100%
    }
}