/*登录页*/
.login-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url("/images/login/oaLoginBg-38d1549f817183c953e5a94e810885d8.png") center center no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
}

.login-box-wrap {
    width: 1366px;
    overflow: hidden;
    height: 450px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    margin-left: -686px;
    left: 50%;
    margin-top: -225px;
    top: 50%;


}

.login-box-wrap .login-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 508px;
    height: 449px;
    background: #FFFFFF;
    margin-right: 4rem;
    box-shadow: -1px 1px 11px 0px rgba(20, 50, 80, 0.12);
}

.login-card-body .login-box-logo {
    margin-top: 60px;
    margin-bottom: 40px;
    width: 373px;
    height: 39px;
}

.login-card-body .login-form-input {
    margin-bottom: 24px;
    width: 388px;
}


.login-box-wrap label:not(.form-check-label):not(.custom-file-label) {
    font-size: 14px;
    color: #404040;
    font-weight: normal;
}

.login-box-wrap [class*=icheck-] > input:first-child + label::before {
    width: 16px;
    height: 16px;
    line-height: 16px;
    min-height: 16px;
    vertical-align: middle;
    margin-top: 3px;
    border-radius: 2px;
}

.login-box-wrap .icheck-primary > input:first-child:checked + label::before {
    outline: none;
    background: linear-gradient(270deg, #009A53 0%, #B8CB37 100%);;
}

.login-box-wrap [class*=icheck-] > input:first-child:checked + label::after {
    border-color: #fff;
    transform: translate(5px, 4.5px) rotate(45deg);
}

.login-box-wrap .icheck-primary > input:first-child:checked + label::before {
    border-color: #fff;
}

.reset-password {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.label-hover-link {
    font-size: 14px;
    color: #404040
}

.label-hover-link:hover {
    color: #00A67E;
}

.loginBtn {
    padding: 40px 0;
}

.loginBtn .button {
    width: 384px;
    height: 50px;
    display: block;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
    background-size: 300% 100%;
    border-radius: 4px;
    transition: all 1s ease-in-out;


}

/*响应式*/
.loginBtn .button:hover {
    background-image: linear-gradient(270deg, #B8CB37 0%, #009A53 100%);
    background-position: 100% 0;
    transition: all 1s ease-in-out;
}

.loginBtn .button.color-1 {
    background-image: linear-gradient(270deg, #00A67E 0%, #80CB0F 100%)
}

/*>=1366的设备*/
@media (min-width: 1366px) and (max-width: 1680px) {
    .login-box-wrap {
        width: 1100px;
        padding-right: 1rem;
        height: 450px;
        position: absolute;
        margin-left: -550px;
        left: 50%;
        margin-top: -225px;
        top: 50%;;
    }

    .login-box-wrap .login-card-body {
        width: 361px;
        height: 319px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #FFFFFF;

        box-shadow: -1px 1px 11px 0px rgba(20, 50, 80, 0.12);
    }

    .login-card-body .login-box-logo {
        width: 266px;
        height: 29px;
    }

    .login-card-body .login-box-logo {
        margin-top: 30px;
        margin-bottom: 26px
    }

    .login-card-body .login-form-input {
        margin-bottom: 16px;
        height: 36px;
        width: 276px;
    }

    .loginBtn {
        padding: 24px 0;
    }

    .loginBtn .button {
        width: 273px;
        height: 36px;
    }
}