#contacto #form-contacto .subt {
    margin-bottom: 20px;
}

#contacto #form-contacto a {
    color: #fdb91b;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

#contacto #form-contacto a:hover {
    transition: all 0.4s ease-in-out;
    color: var(--secondary-grey);
}

/* - - - - Contenedores con el input + placeholder - - - - */

#contacto #form-contacto input.campo {
    display: block;
    border: none;
    appearance: none;
    border-radius: 0;
    letter-spacing: 0;
    width: 100%;
    font-weight: 300;
    color: #fff !important;
    font-size: 18px;
    line-height: 46px;
    height: 46px;
    background: #1D1D1D;
    outline: none;
    padding: 5px 0 5px;
    border-bottom: 1px solid #dcdcdc;
    transition: 0.5s;
}

#contacto #form-contacto input.campo:focus {
    border-bottom: 1px solid #fdb91b;
}

#contacto #form-contacto input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

#contacto #form-contacto input:-webkit-autofill {
    /* Cambiar el estilo de los inputs cuando se autorellenan */
    -webkit-box-shadow: 0 0 0 30px #1D1D1D inset !important;
    -webkit-text-fill-color: #fff !important;
}

#contacto #form-contacto input[type="submit"] {
    font-size: 18px;
    padding: 10px 20px;
    min-width: 150px;
}

#contacto #form-contacto .check-aceptar {
    margin-top: 20px;
}

/* - - - - Check de aceptar la política de privacidad - - - - */

input[type=checkbox] + label {
    display: block;
    margin: 0.2em;
    cursor: pointer;
    padding: 0.2em;
    color: #fff;
    font-size: 0.8em;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox] + label:before {
    content: "\2714";
    border: 0.1em solid #fff;
    border-radius: 0.2em;
    display: inline-block;
    width: 1em;
    height: 1em;
    padding-left: 0.3em;
    padding-bottom: 0.3em;
    margin-right: 0.5em;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
}

input[type=checkbox]:checked + label:before {
    background-color: #1D1D1D;
    border-color: #fff;
    color: #fff;
  }

input[type=checkbox] + label:active:before {
    transform: scale(0);
}

/* - - - - Fin check de aceptar la política de privacidad - - - - */

#contacto #form-contacto .let_peq {
    margin-top: 20px;
    font-size: 0.8em;
    color: #707070;
}