@import url("login-rigth.css") all;
.fondo{
    width: 100vw;
    height: 100vh;
    background: url('../../images/login_fondo.jpg') no-repeat center / cover;
}
.opacidad{
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(10px);
}
.login__contenido{
    width: 80vw;
    height: 80vh;
    background: #ffffff;
    position: absolute;
    top: 10%;
    left: 10%;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.2);
}
.contenido__ingreso{
    width: 45%;
    height: 100%;
    background: url('../../images/inmersion.jpg') no-repeat center / cover;
}
.ingreso__opaco{
    background: #504444;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.ingreso__datos{
 width: 80%;
 margin: 0 auto;
}
.ingreso__logo{
    width: 200px;
    height: 70px;
    background: url('../../images/logoLarge.png') no-repeat center / cover;
    margin: auto;
}
.ingreso__informacion{
    margin-top: 30px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 20px;
    color: #ffffff;
}
.ingreso__mas{
    margin-top: 30px;
    text-align: justify;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 20px;
    color: #ffffff;
}
.ingreso__lista{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}
.lista__item{
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}


@media (min-height: 1000px) {
    .ingreso__logo{
        width: 360px;
        height: 170px;
    }
    .ingreso__informacion{
        font-size: 20px;
    }
    .ingreso__mas{
        font-size: 20px;
    }
}



@media only screen and (max-width: 767px) {
    .ingreso__logo{
        width: 150px;
        height: 70px;
        background: url('../../images/logoLarge.png') no-repeat center / cover;
        margin: auto;
    }
    .fondo {
        background-size: cover;
    }
    .opacidad {
        backdrop-filter: none;
        height: auto;
    }
    .ingreso__opaco{
        padding-bottom: 20px;
    }
    .login__contenido {
        width: 100%;
        height: 50%;
        position: relative;
        left: 0;
    }

    .contenido__ingreso {
        width: 100%;
    }

    .ingreso__informacion{
        margin-top: 30px;
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10px;
        line-height: 20px;
        color: #ffffff;
    }
    .ingreso__mas{
        margin-top: 30px;
        text-align: justify;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10px;
        line-height: 20px;
        color: #ffffff;
    }
   
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* Agrega tus estilos específicos para tabletas aquí */
    .fondo {
        background-size: cover;
    }
    .opacidad {
        backdrop-filter: none;
        height: auto;
    }
    .ingreso__opaco{
        padding-bottom: 20px;
    }
    .login__contenido {
        width: 100%;
        height: 80%;
        position: relative;
        left: 0;
    }

    .contenido__ingreso {
        width: 100%;
        height: 50vh;
    }

}