@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --e-color-primary: #5858EE;
    --e-color-background: #212E36;
    --e-color-text: #FFFFFF;
    --e-color-accent: #D9D9D9;
}

body, html{
    width: 100%;
    padding: 0px;
    margin: 0px;
    color: white;
    text-align: center;
    font-family: "Lato", serif;
    background-size: cover;
    background-position: center center;
}

*{
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
    color:inherit;
}
a:visited {
    text-decoration: none;
    color:inherit;
}
a:hover {
    text-decoration: none;
    color:inherit;
}
a:active {
    text-decoration: none;
    color:inherit;
}

.link{
    font-weight: bold;
    color: var(--e-color-primary) !important;
}

.flex1{
    flex:1;
    width: 100%;
}

.flex2{
    flex:2;
    width: 100%;
}

.flex3{
    flex:3;
    width: 100%;
}

.flex4{
    flex:4;
    width: 100%;
}

.flex5{
    flex:5;
    width: 100%;
}

.flex6{
    flex:6;
    width: 100%;
}

.flex7{
    flex:7;
    width: 100%;
}

.flex8{
    flex:8;
    width: 100%;
}

.flex9{
    flex:9;
    width: 100%;
}

.flex10{
    flex:10;
    width: 100%;
}

.flexV{
    display:flex;
    flex-direction:column;
    justify-content: center;
}

.flexH{
    display:flex;
    align-items:center;
    flex-direction:row;
    justify-content: center;
}

.flexCenterFull{
    align-items: center;
    justify-content: center;
    display: flex;
}

.flexHeightVH{
    height: 100vh;
}

.flexTop{
    align-items:flex-start !important;
}

.flexGrid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
}

.flexGridx2{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
}


.title40{
    font-size: 40px;
    font-weight: 400;
    display: inline-block;
    width: 100%;
}

.title50{
    font-size: 50px;
    font-weight: 400;
    display: inline-block;
    width: 100%;
}

.title32{
    font-size: 40px;
    font-weight: 400;
    display: inline-block;
    width: 100%;
    margin-bottom: 30px
}


.text20{
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
    display: inline-block;
}

.text25{
     font-size: 25px;
     font-weight: 300;
     display: inline-block;
 }


.text16{
    font-size: 16px;
    font-weight: 200;
    display: inline-block;
    line-height: 16px;
}

.text18{
    font-size: 18px;
    font-weight: 300;
    display: inline-block;
}

.text19{
    font-size: 19px;
    font-weight: 300;
    display: inline-block;
}

label{
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    text-align: left;
}

.containerInput{
    width: 100%;
    height: 73px;
    background-color: var(--e-color-background);
    border-radius: 10px;
    padding-top: 25px;
}

input{
    width: calc(100% - 50px);
    background-color: transparent;
    border: none;
    color: white;
    vertical-align: super;
}

input[type=button], input[type=submit], button{
    width: 100%;
    height: 73px;
    display: inline-block;
    background-color: var(--e-color-accent);
    color: var(--e-color-primary);
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.buttonBlue{
    background-color: var(--e-color-primary);
    color: var(--e-color-accent);
}

.asterisk::after {
    content: "*";
    color: red;
    font-weight: bold;
}

.containerHost{
    width: 100%;
    max-width: 1200px;
    display: inline-block;
}

textarea:focus, input:focus{
    outline: none;
}

.gap140{
    gap: 140px;
}

.positionTopLeft{
    position: absolute;
    top: 33px;
    left: 30px;
}

.paddingRight3rem{
    padding-right: 3rem;
}

.marginTop56{
    margin-top: 56px;
}

.marginTop39{
    margin-top: 39px;
}

.marginBottom23{
    margin-bottom: 23px;
}

.marginBottom30{
    margin-bottom: 30px;
}

.marginBottom85{
    margin-bottom: 85px;
}

.marginBottom16{
    margin-bottom: 16px;
}

.marginBottom44{
    margin-bottom: 44px;
}

.marginBottom27{
    margin-bottom: 23px;
}

.marginBottom56{
    margin-bottom: 56px;
}

.marginTop36{
    margin-top: 36px;
}

.marginTop12{
    margin-top: 12px;
}

.marginTop22{
    margin-top: 22px;
}

.marginTop40{
    margin-top: 40px;
}

.marginTop150{
    margin-top: 150px;
}

.containerCheckbox {
    display: block;
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.containerCheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmarkCheckbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #212E36;
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.containerCheckbox:hover input ~ .checkmarkCheckbox {
    background-color: #212E36;
}

/* When the checkbox is checked, add a blue background */
.containerCheckbox input:checked ~ .checkmarkCheckbox {
    background-color: #212E36;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmarkCheckbox:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.containerCheckbox input:checked ~ .checkmarkCheckbox:after {
    display: block;
}

/* Style the checkmark/indicator */
.containerCheckbox .checkmarkCheckbox:after {
    left: 5px;
    top: 0px;
    width: 6px;
    height: 10px;
    border: solid #5858EE;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.textLeft{
    text-align: left;
}

.logoBottom{
    position: absolute;
    left: 50px;
    bottom: 60px;
}

@media screen and (max-width: 800px) {
    .flexH{
        flex-direction: column;
        margin-left: 30px;
        margin-right: 30px;
    }

    .gap140 {
        gap: 40px;
    }

    .flexHeightVH{
        height: auto;
        padding-top: 50px;
    }

    .logoBottom{
        display: none;
    }

    .logo-menthora{
        width: 107px;
        height: auto;
        margin-top: -15px;
    }

    .greenText{
        margin-left: 32px;
    }
}

/* Estilos generales */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    background-color: transparent !important;
    box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    color: inherit !important;
    transition: background-color 5000s ease-in-out 0s; /* Para evitar que el navegador restablezca el fondo */
}

/* Desactivar autocompletado en todos los navegadores */
input, textarea, select {
    autocomplete: off;
    -webkit-text-fill-color: inherit !important; /* Mantiene el color del texto */
}
