*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bg-login{
    background: url('../imagenes/login-bg.jpg') no-repeat;
    background-size: cover;
}

.bg-container{
    position: relative;
    margin: 0 auto;
    width: 75%;
    height: 100vh;
}

.div-container{
    position: absolute; top:50%; right: 0%; transform: translate(-0%, -50%);
    height: max-content; width: 40%; 
}

.div-img{
    padding: 1.8rem;
    width: 100%;
    height: 100%;
}

.p-3{
    padding: 1.8rem
}

@media only screen and (max-width: 600px){
    .bg-container{
        width: 90%;
    }
    .div-container{
        width: 100%;
        top: 50%;
        right: 0;
        transform: translate(-0%,-50%);
        background: transparent; backdrop-filter: blur(5px); padding: 2rem;
    box-shadow: 0px 0px 15px 2px #000000; border-radius: 12px;
    }
}