:root {
    --azul: #0096FF;
    --rojo: #E20613;
    --gris: #F6F6F6;
    --azul-oscuro: #0F224C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.text-azul {
    color: var(--azul);
}

.text-rojo {
    color: var(--rojo);
}

.text-white {
    color: white;
}

#banner-principal {
    height: 90vh;
    min-height: 700px;
}

#banner-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-azul {
    background-color: #0096FF;
    color: white;
    text-transform: uppercase;
    border-radius: 20px;
    border: 1px solid var(--azul);
    text-decoration: none !important;
    font-style: normal;
    padding: 1.2rem 4rem;
    font-family: sans-serif;
    transition: 0.3s ease-in-out;
}

.btn-azul:hover {
    box-shadow: 0 0 15px var(--azul);
    color: white;
}

#banner-principal :is(h1,h2,a) {
    font-family: sans-serif;
}

#banner-principal h1 {
    font-weight: 900;
    margin-bottom: 1rem;
}

#banner-principal h2 {
    margin-bottom: 5rem;
    font-weight: normal;
    font-size: 1.8rem;
}

#fondo-gris {
    background-color: var(--gris);
    padding: 6em 0 !important;
}

#fondo-gris p {
    font-size: 2.5rem;
    color: var(--azul-oscuro);
    font-family: sans-serif;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    line-height: 1.3;
}

.formContainer.section {
    background-color: white;
}

.formulario-spotlight h2 {
    color: #000;
    font-size: 20px;
    font-family: system-ui, sans-serif !important;
}

.formulario-spotlight h3 {
    color: #000 !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-family: system-ui, sans-serif !important;
}

.form-info a {
    color: var(--azul) !important;
    font-size: 16px !important;
    font-family: system-ui, sans-serif !important;
}

.formContainer.section :is(input, select) {
    border-radius: 20px;
}

.consentLabel p {
    font-family: system-ui, sans-serif !important;
    color: #000 !important;
}

.consentLabel p a {
    color: var(--azul) !important;
}

#Crearcuenta {
    background-color: #0096FF !important;
    color: white;
    text-transform: uppercase;
    border-radius: 20px;
    border: 1px solid var(--azul) !important;
    text-decoration: none !important;
    font-style: normal;
    padding: 1.2rem 4rem;
    font-family: system-ui, sans-serif;
    transition: 0.3s ease-in-out;
}

#Crearcuenta:hover {
    box-shadow: 0 0 15px var(--azul);
    color: white;
    background-color: var(--azul) !important;
}

.facebook-logo {
    max-width: 500px;
}

@media (min-width: 769px) {
    #banner-principal h1 {
        font-size: 6rem;
    }

    #banner-principal h2 {
        font-size: 2.2rem;
    }
}



@media (min-width: 769px) and (max-width: 1920px) {
    #banner-principal {
        min-height: inherit;
        background-size: 100% !important;
        background-repeat: no-repeat;
    }
}

@media (max-width: 768px) {
    #banner-principal {
        background-position: left;
    }

    #banner-principal h1 {
        margin-top: 0;
        text-align: center;
    }

    #banner-principal h2 {
        margin: 2.3rem;
        text-align: center;
        font-size: 1.5rem;
    }

    #banner-principal a {
        margin-bottom: 4rem;
        display: block;
    }
}