:root{
    --fuentePresentacion: 'Tai Heritage Pro', serif;
    --fuente: 'Source Sans Pro', sans-serif;
    --fuenteTit: 'Poly', serif;
    --azulSecundario: #026359;
    --blanco: #fff;
    --negro: #000;
    --gris: #e1e1e1;
}

html{
    box-sizing: border-box;
    font-size: 62.5%;
}

*, *:before, *:after{
    box-sizing: inherit;
}

body{
    font-family: var(--fuente);
    font-size: 1.6rem;
    line-height: 2;
    font-weight: 300;
}

/*--------------------------------------------Globales--------------------------------------------*/
.contenedor{
    max-width: 90%;
    margin: 0 auto;
}

a{
    text-decoration: none;
}

h1, h2{
    line-height: 1.2;
}

h1{
    font-size: 4rem;
}

h2{
    font-size: 3rem;
}

img{
    max-width: 100%;
}

/*--------------------------------------------Utilidades--------------------------------------------*/
.no-margin{
    margin: 0;
}

/*--------------------------------------------Evento--------------------------------------------*/
.evento{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.evento-img{
    grid-column: 1 / 3;
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url(../img/section.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.img-tex{
    position: absolute;
    width: 100%;
	height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--blanco);
}

.img-tex h2{
    font-weight: 300;
}

.evento-login{
    background-color: var(--gris);
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login{
    width: 90%;
    height: 80%;
    background-color: var(--blanco);
    padding: 8rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    -webkit-box-shadow: 0px 0px 35px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 35px -10px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 35px -10px rgba(0,0,0,0.75);
}

.campo{
    display: flex;
    flex-direction: column;
    font-size: 1.8rem;
    font-weight: 400;
}

.titulo-log{
    font-weight: 600;
    text-align: center;
}

.campo__label{
    width: 100%;
}

.campo__input{
    width: 100%;
    color: var(--negro);
    font-weight: 600;
    border: none;
    line-height: 3rem;
    padding: 0 1rem;
    background-color: var(--gris);
    border-radius: 0.5rem;
}

.campo__input::placeholder{
    color: var(--negro);
    font-weight: 300;
}

.password{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mostrar, .ocultar{
    cursor: pointer;
    display: flex;
}

.i-o{
    display: none;
}

.campo p a{
    color: var(--azulSecundario);
    font-weight: 600;
}

.boton{
    padding: 0.7rem 2rem;
    background-color: var(--azulSecundario);
    color: var(--blanco);
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
}

.boton:hover{
    transition: all 0.3s ease;
    border: 0.2rem solid var(--negro);
    cursor: pointer;
}

@media (max-width: 768px) {
    .evento-img{
        display: none;
    }

    .evento{
        display: block;
    }

    .evento-login{
        background-image: url(../img/section.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .login{
        background-color: rgba(255, 255, 255, 0.4);
    }

    .campo{
        font-size: 1.6rem;
    }
}

/*------------------------------------------Pantallas Grandes-----------------------------------------*/
@media (min-width: 1500px) {
    h1{
        font-size: 4.2rem;
    }

    h2{
        font-size: 3.2rem;
    }

    .img-tex p{
        font-size: 1.8rem;
    }

    .campo{
        font-size: 2rem;
    }
}

@media (min-width: 1750px) {
    h1{
        font-size: 4.4rem;
    }

    h2{
        font-size: 3.4rem;
    }

    .img-tex p{
        font-size: 2rem;
    }

    .campo{
        font-size: 2.2rem;
    }
}

@media (min-width: 2000px) {
    h1{
        font-size: 4.6rem;
    }

    h2{
        font-size: 3.6rem;
    }

    .img-tex p{
        font-size: 2.2rem;
    }

    .campo{
        font-size: 2.4rem;
    }
}

@media (min-width: 2250px) {
    h1{
        font-size: 4.8rem;
    }

    h2{
        font-size: 3.8rem;
    }

    .img-tex p{
        font-size: 2.4rem;
    }

    .campo{
        font-size: 2.6rem;
    }
}

@media (min-width: 2500px) {
    h1{
        font-size: 5rem;
    }

    h2{
        font-size: 4rem;
    }

    .img-tex p{
        font-size: 2.6rem;
    }

    .campo{
        font-size: 2.8rem;
    }
}

@media (min-width: 2750px) {
    h1{
        font-size: 5.2rem;
    }

    h2{
        font-size: 4.2rem;
    }

    .img-tex p{
        font-size: 2.8rem;
    }

    .campo{
        font-size: 3rem;
    }
}

@media (min-width: 3000px) {
    h1{
        font-size: 5.4rem;
    }

    h2{
        font-size: 4.4rem;
    }

    .img-tex p{
        font-size: 3rem;
    }

    .campo{
        font-size: 3.2rem;
    }
}

@media (min-width: 3250px) {
    h1{
        font-size: 5.6rem;
    }

    h2{
        font-size: 4.6rem;
    }

    .img-tex p{
        font-size: 3.2rem;
    }

    .campo{
        font-size: 3.4rem;
    }
}

@media (min-width: 3500px) {
    h1{
        font-size: 5.8rem;
    }

    h2{
        font-size: 4.8rem;
    }

    .img-tex p{
        font-size: 3.4rem;
    }

    .campo{
        font-size: 3.6rem;
    }
}