.login-wrapper {
    position: relative;
    background: #fff;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 5rem;
    margin: auto;
}


.login-card {
    position: relative;
    width: 400px;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 1px 1px 20px 6px rgb(0 0 0 / 6%);
    z-index: 1060;
    /*    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
}

.login-logo-wrap {margin-bottom: 20px;}

.login-logo-wrap img {
    /*width: 140px;*/
}


.login-wrapper:before,
.login-wrapper:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    transform: skew(190deg, 360deg);
    transform-origin: bottom;
}

.login-wrapper:before {
    background-image: url(../images/login-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.login-wrapper:after {
    background: rgb(4 74 117 / 80%);
}

@media screen and (max-width:  576px){
    .login-wrapper {
        padding: 2rem;
    }

    .login-card{
        padding: 1.5rem;
        max-width: 300px;
    }

    .login-wrapper:before, .login-wrapper:after{
        width: 100%;
        transform: skew(200deg, 360deg);
    }

}



@media screen and (max-width:  882px){
    .login-wrapper {
        padding: 3rem;
    }
}


.login-card .btns {
    padding: 0.8rem 1rem;
}


.login-card .form-control{
    padding: 1rem 1rem;
}

.frgt-password {
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
}