.login {
    background-image: url('../img/bg-login.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    height: 100vh;
}

.login-content {
    position: absolute;
    z-index: 1;
    top: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgb(255 255 255) 50%, rgb(255 255 255 / 0%) 80%);
    right: 0;
    left: 0;
    bottom: 0;
}

@media only screen and (max-width: 768px) {
    .login-content {
        position: absolute;
        z-index: 1;
        top: 0;
        background: rgb(255, 255, 255);
        background: linear-gradient(110deg, rgb(255 255 255 / 95%) 50%, rgb(255 255 255 / 30%) 75%);
        right: 0;
        left: 0;
        bottom: 0;
    }
}
  
@media only screen and (max-width: 480px) {
    .login-content {
        position: absolute;
        z-index: 1;
        top: 0;
        background: rgb(255, 255, 255);
        background: linear-gradient(110deg, rgb(255 255 255 / 95%) 50%, rgb(255 255 255 / 30%) 75%);
        right: 0;
        left: 0;
        bottom: 0;
    }
}
  