.footer-wrapper > div:not(.footer-relevant){
    display: none;
}
.footer-relevant{
    padding-top: 0!important;
    text-align: center;
}

html{
    height: 100%;
}
body{
    height: inherit;
    background: #F1F6FF url("../images/login/bg.png")no-repeat center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.login-content{
    width: 1028px;
    display: flex;
    align-items: stretch;
    margin: 50px auto;
    flex-shrink: 0;
    box-shadow: 0px 10px 36px 0px rgb(5 17 71 / 7%)
}
.left-block img{
    width: 100%;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.left-block img:hover{
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
    box-shadow: 2px 10px 20px 5px rgb(5 17 71 / 7%);
}
.left-block{
    background-color: #fff;
    font-size: 0;
}
.login-content > div{
    flex: 1;
}
.right-block{
    display: flex;
    background: #fff url("../images/login/right-bg.png")no-repeat right bottom / auto;
    max-width: 50%;
    /* align-items: center; */
    padding-top: 40px;
}
.right-block > div{
    padding: 0 80px;
    flex: 1;
}
.right-block h1{
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}
.login-item{
    margin-top: 25px;
}
.login-item > div{
    border: 1px solid #ccc;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin-bottom: 5px;
    position: relative;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.login-item > div > i{
    position: absolute;
    height: 20px;
    top: 0;
    bottom: 0;
    color: #999;
    margin: auto 0;
    left: 15px;
    font-size: 18px;
}
.login-item > div > img:last-child{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 0;
    height: 40px;
}
.login-item > div:hover {
    border-color: #4794FE;
}
.login-item > div:hover  i{
    color: #4794FE;
}
.login-item input{
    outline: none;
    border: none;
    height: 40px;
    width: 100%;
    padding-left: 50px;
    font-family: auto;
}
.login-item a{
    color: #f60;
}
.login-err{
    text-align: center;
    border-radius: 2px;
    background: #FFE4E4;
    padding: 8px 0;
}
.login-err img{
    margin-right: 3px;
}
.login-err *{
    vertical-align: middle;
    color: #FF0000;
}
.submit-btn {
    border: none;
    font-weight: bold;
    color: #fff;
    outline: none;
    width: 100%;
    border-radius: 6px;
    line-height: 40px;
    font-size: 16px;
    background: linear-gradient(0deg, #F79A0A 0%, #FE6D02 100%);
    margin: 20px 0 10px;
    cursor: pointer;
    transition: all .2s
}
.submit-btn:hover{
    opacity: 0.8;
}
.submit-block a{
    color: #f60;
    text-decoration: none;
}
.submit-block a:hover{
    color: #f60;
}
.submit-block {
    text-align: center;
}

@media (max-width: 1200px) {
    .login-content{
        width: 95%;
    }
}

@media (max-width: 992px) {
    .left-block {
        display: none;
    }
    .login-content{
        width: auto;
    }
    .login-content > div{
        flex: auto;
        max-width: initial;
    }
    .right-block > div {
        padding: 50px 80px;
    }
}

.eye_slash{
    width: 18px;
    height: 16px !important;
    right: 10px !important;
    cursor: pointer;
}