html{
    font-size: 14px!important;
}
.login-container{
    width: 100%;
    height: 100%;
}
.login-container .login-inner{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.wimg{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.login-img{
    width: 100%;
    height: 100%;
    position: relative;
}
.login-img .dl-im{
    width: 100%;
    height: 100%;
    position: relative;
}
.login-img .dl-words{
    position: absolute;
    width: 100%;
    left: 0;
    top: 22%;
    text-align: center;
}
.login-img .dl-words .dlws{
    font-size: 22px;
    color: #fff;
    line-height: 2;
    font-weight: 700;
}

.login-content{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    z-index: 99;
}
.login-box{
    width: 36rem;
    box-shadow: 0 0 24px rgb(198 198 198 / 35%);
    padding: 3rem;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.login-box .login-logo{
    max-width: 80%;
    margin: 1rem auto 2rem;
    width: max-content;
}
.login-box .login-title{
    font-weight: 700;
    font-style: normal;
    font-size: 1.7rem;
    color: #333;
    margin: 0 0 2rem 0;
    text-align: center;
}
.login-box .form-group{
    margin: 0 0 1.5rem 0;
}
.login-box .form-control{
    height: calc(2.5em + 0.75rem + 2px);
    border: 1px solid #e9e9e9;
    font-size: 1.145rem;
    padding: 0.4rem 1rem 0.4rem 3.4rem;
}
input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    background-color:transparent;
    background-image: none;
    transition: background-color 50000s ease-in-out 0s;
}
.login-box .el-srk{
    width: 100%;
    position: relative;
}
.login-box .el-srk:after{
    content: '';
    position: absolute;
    width: 1.4rem;
    height: 1.4rem;
    left: 1rem;
    top: calc((100% - 1.4rem)/2);
}
.login-box .el-srk.ic_user:after{
    background: transparent url(../images/login/ic_user.svg) no-repeat center;
    background-size: 100% 100%;
}
.login-box .el-srk.ic_password:after{
    background: transparent url(../images/login/ic_password.svg) no-repeat center;
    background-size: 100% 100%;
}











.login-box .invalid-feedback{
    margin-top: 0.5rem;
    font-size: 90%;
}
.login-box .btn{
    padding: 0.8rem 0.75rem;
    border-radius: 5px;
    font-size: 1.285rem;
    background-color: #0067aa!important;
    border-color: #0067aa!important;
    margin: 0 0 1rem 0;
}
.login-box .btn-code{
    padding: 0 1rem;
    font-size: 1rem;
    border-radius: 0 0.25rem 0.25rem 0 !important;
    color: #fff !important;
}


@media screen and (max-width: 1200px){
    .login-img{
        width: 0;
        display: none;
    }
    .login-content{
        width: 100%;
    }

}
@media screen and (max-width: 767px){
    .login-box .btn-code{
        padding: 0 1rem!important;
    }
    .login-box{
        padding: 4%;
        width: 100%;
        height: 100%;
        box-shadow: none;
    }
    .login-box .login-logo{
        width: 70%;
        margin: 10% auto 5%;
    }
    .login-box .login-title{
        font-size: 16px;
    }

    .login-box .form-control{
        height: calc(2em + 0.75rem + 2px);
    }
    .login-box .btn{
        padding: 0.6rem 0.75rem;
        font-size: 1.145rem;
    }







}






