/* Estilos del formulario de contacto */
body{
    padding-top: 80px;
}

.contenedor_formulario_contacto {
    display: flex;
    margin-left: 350px;
    margin-right: 350px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.navbar-fixed .navbar {
    background-color: #043B42; /* Asegura que tenga color de fondo */
    position: fixed; /* Para que siempre esté visible */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(0); /* No lo oculta */
}

.columna_formulario_contacto {
    flex: 1;
    height: 700px;
    width: 100px;
    border-radius: 30px 0px 0px 30px;
    padding-left: 50px;
    padding-right: 50px;

}

.columna_formulario_contacto h1 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 45px;
    font-weight: 550;
    font-style: normal;
    font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 40px;
    color : #043B42;
}

.columna_formulario_contacto_2 {
    flex: 1;
    height: 700px;
    width: 100px;
    border-radius: 0px 30px 30px 0px;
    background-image: url(/images/aq.jpg);
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 

}

.inputsUsuario {
    display: flex;
    flex-direction: column; 
    margin-bottom: 10px;
}

.inputsUsuario label {
    font-family: "Red Hat Text", sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
}

.inputsUsuario input,textarea {
    width: 90%; 
    padding: 5px; 
    background-color: white; 
    border: 2px solid #043B42;
    border-radius: 5px; 
    font-size: 16px;
    color: black;
    outline: none;
    margin-bottom: 10px;
}

textarea {
    resize: vertical;
}

.inputsUsuario input:focus,
textarea:focus {
    border-color: #043B42;
}


.botonEnviar{
    background-color: #F4CC00; /* Amarillo dorado */
    color: black;
    width: 90%;
    padding: 5px; /* Ajusta el tamaño */
    font-size: large;
    font-weight: 500;
}

.botonEnviar:hover {
    background-color: hsl(50, 97%, 55%); /* Amarillo dorado */
}

.g-recaptcha{
    margin-bottom: 10px;
}



@media (max-width: 480px) {
    .columna_formulario_contacto_2 {
        display: none;
    }

    .contenedor_formulario_contacto {

        margin-left: 10px;
        margin-right: 30px;
    }

    .columna_formulario_contacto h1 {
        font-size: 40px;
    }

    .inputsUsuario p {
        font-size: 15px;
    }

    .columna_formulario_contacto {
        border-radius: 30px 30px 30px 30px;
    
    }
    
    .g-recaptcha {
        transform: scale(0.5);
        transform-origin: 0 0;
        width: 125% !important; /* Asegura que ocupe todo el ancho disponible */
        height: auto !important; /* Ajusta la altura según el ancho */
        overflow: visible !important; /* Evita el recorte */
        margin-bottom: -10px;
    }
    .g-recaptcha iframe {
        width: 125% !important; /* Ajusta el iframe */
        height: auto !important; /* Ajusta la altura del iframe */
    }
    
}


@media (max-width: 767px) {
    .columna_formulario_contacto_2 {
        display: none;
    }

    .contenedor_formulario_contacto {
        margin-left: 40px;
    }

    .columna_formulario_contacto h1 {
        font-size: 40px;
    }

    .inputsUsuario p {
        font-size: 15px;
    }

    .columna_formulario_contacto {
        border-radius: 30px 30px 30px 30px;
    }
    .g-recaptcha {
        transform: scale(0.5);
        transform-origin: 0 0;
        width: 125% !important; /* Asegura que ocupe todo el ancho disponible */
        height: auto !important; /* Ajusta la altura según el ancho */
        overflow: visible !important; /* Evita el recorte */
        margin-bottom: -10px;
    }
    .g-recaptcha iframe {
        width: 125% !important; /* Ajusta el iframe */
        height: auto !important; /* Ajusta la altura del iframe */
    }
}
