body{
    padding: 0;
    margin: 0;
    background-image: url('../images/login/CONEXION_fondo-login-movil_1.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

*{
    box-sizing: border-box;
    color:white;
    font-family: "Montserrat", sans-serif;
}


.containerFooterQuestions{
    display:flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.containerFooterQuestions:first-child{
    margin-top:32px;
}

.logoConexion,
.esloganConexion{
    width: 100%;
    max-width:400px;
}

.logoConexion{
    margin-top: 30px;
}

.sectionForm,.sectionLogos{
    padding: 0px 14px;
    max-width: 720px;
    margin: 0 auto;
}

.sectionLogos{
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:40px;
    padding-bottom: 10px;
}

.sectionForm{
    padding-top: 10px;
    margin-bottom: 40px;
}

.titleForm{
    font-size: 1.5rem;
}

.subtitleForm{
    font-weight: 500;
    margin-bottom: 21px;
}

.titleInput,.inputForm{
    display: block;
    margin-bottom: 21px;
}

.btnLogin{
    all:unset;
    margin-bottom: 32px;
    background-color: #4EB8D9;
    color:black;
    padding: 8px 25px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.inputForm{
    width: 100%;
    padding: 12px;
    background: #A2A5AF;
    color: black;
    border-radius: 6px;
    outline: none;
    border: none;
}

.linkForm{
    color:#58C2E7;
}

.etechIconHeader{
    display: none;
    width: 240px;
}

@media screen and (min-width: 1024px){

    body{
        height: 100vh;
    }

    .titleForm{
        margin-top: 0;
        padding-top: 0;
    }

    .containerFormAll{
        display: grid;
        grid-template-columns: 50% 1fr;
        justify-items: center;
        align-items: center;
        gap:30px;
        height: 100%;
    }

    .sectionForm{
        max-width: 100% ;
    }

    .sectionLogos{
        max-width: 500px;
        align-items: start;
        justify-content: start;
        gap:70px;
    }

    .etechIconHeader{
        display: block;
    }
}


@media screen and (min-width: 1440px) {
    .containerFormAll{
        grid-template-columns: 50% 1fr;
        justify-items: end;
        width: 1200px;
        margin: 0 auto;
    }

    .sectionForm{
        justify-self: start;
    }

    .logoConexion{
        max-width: 750px;
        margin-top: 0;
    }

    .sectionLogos{
        max-width: 500px;
        height: 580px;
        gap:140px;
        justify-self: end;
    }
}