* {
    margin: 0;
    box-sizing: border-box;
    user-select: none;
}
*::selection {
    background: none;
  }
  *::-moz-selection {
    background: none;
  }

body {
    font-family: "Helvetica Neue", "Helvetica";
    padding: 90px 0 0;
    background: rgba(220, 212, 255, 0.7);
}
.titinicio {
    text-align: center;
    color: #08476e;
}
.container-contacto {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contenedorForm {
    width: 80%;
    background: #ABA0DE;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    border-radius: 10px;
    margin-bottom: 60px;
}
.contenedorForm h2 {
    margin: 10px 0px 6px 20px;
}
.contenedorForm p {
    margin-left: 20px;
    width: 70%;
    text-align: justify;
}

.imagen-mail {
    margin: 30px;
    width: 65%;
}

.cajaImgContacto h5{
    color:#08476e;
    font-size: 16px;
    margin-left: 20px;
}


.field {
    margin: 20px;
}

.field label{
    display: block;
    margin: 0px 0px 5px 10px;
    font-weight: bold;
}

.field input{ 
    border: none;
    padding: 8px;
    width: 400px;
    border-radius: 15px;
}
.cajaInputRadio {
    margin: 20px 0px;
    color: green;
    font-weight: bold;
    margin-left: 20px;

}
.campo-visible-1,
.campo-visible-2 {
    display: none;
}

.campo-visible-1 h3 {
    margin: 0px 0px 5px 20px;
}
.campo-visible-1 p {
    margin: 0px 0px 15px 20px;
}


.enlace-instrucciones {
    color: green;
    background: #AED6F1;
    padding: 6px 8px;
    text-decoration: none;
    margin: 0px 0px 10px 20px;
    font-weight: 600;
    border-radius: 15px;
    width: 32%;
    text-align: center;
    font-size: 14px;
}

.g-recaptcha {
    margin-left: 20px;
}

.btnEnviar {
    background: #08476e;
    font-size: 18px;
    border: none;
    border-radius: 15px;
    padding: 6px 10px;
    color: #fff;
    width: 60%;
    margin: 20px 0px 30px 20px;
    cursor: pointer;
    display: none
}

.inputComentario {
    resize: none;
    border: none;
}

.cajaIntermediaInstrucciones {
    flex-direction: column;
    text-align: center;
    min-height: 100px;
}

.cajaIntermediaInstrucciones h3{
    font-size: 30px;
    color: #08476e;
}

.imagen-instrucciones {
    width: 150px;
}

.caja-instrucciones {
    background: #AED6F1; 
    margin: 20px 20px 50px 20px;
    padding: 20px;
    border-radius: 10px;
}

.caja-instrucciones div{
    margin-bottom: 10px;
}

.caja-instrucciones h5{
    font-size: 18px;
    color: #08476e;
}
.caja-instrucciones p{
    font-size: 14px;
    margin-bottom: 5px;
}

.aviso {
    margin: 0px 50px 50px 50px;
    color: #A0A0A0; 
    background: #E7FFDE; 
    padding: 15px;
}

.aviso h5{
    font-size: 14px;
}
.aviso p{
    font-size: 14px;
}

@media (max-width: 930px) {
    /* .imagen-mail {
        width: 45%;
    } */
    .field input{ 
        width: 100%;
    }
    .inputComentario {
        width: 100%;
    }
    #message {
        width: 100%;
    }
}

@media (max-width: 810px) {
    .contenedorForm {
        display: block;
        /* justify-content: center;
        align-items: center; */
    }

    .contenedorForm p {
        margin-left: 20px;
        width: 90%;
        text-align: justify;
    }
    
    .imagen-mail {
        display: none;
    }
    .field input{ 
        width: 100%;
    }
    .inputComentario {
        width: 100%;
    }
    #message {
        width: 100%;
    }


    .imagen-instrucciones {
        width: 100px;
        margin-left: 10px;
    }
}

@media (max-width: 470px) {
    .caja-instrucciones pre{
        font-size: 14px;
    }
}
@media (max-width: 436px) {
    .caja-instrucciones pre{
        font-size: 12px;
    }
}


