@charset "utf-8";
/* 登录页面CSS */
html, body {
    width: 100%;
    height: 100%;
}

body {
    background-image: url("/static/image/admin/login_bg_new.jpg");
    background-size: contain;
    background-position: center center;
}

.login-wrapper {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    max-width: 420px;
    margin: 0 auto;
    padding: 20px;
    -webkit-animation-name: scale;
    animation-name: scale;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.login-wrapper .title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.login-wrapper form {
    box-sizing: border-box;
    padding: 45px 30px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.5);
}

.login-wrapper .input-group {
    margin-top: 15px;
}

.login-wrapper .input-group input {
    font-size: 16px;
    line-height: 1.5;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 38px;
    padding: 6px 12px 6px 42px;
    color: #595959;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    outline: none;
    background-color: #fff;
}


.login-wrapper .input-group .iconfont.input-icon {
    font-size: 24px;
    position: absolute;
    top: 2px;
    left: 10px;
    color: #595959;
}

.login-wrapper .input-group .iconfont.loading {
    color: #fff;
}

.login-wrapper .input-group input:focus {
    border-color: #2d8cf0 !important;
}

.login-wrapper .input-group .left {
    display: inline-block;
    width: 200px;
}

.login-wrapper .input-group .right {
    display: inline-block;
    width: 120px;
    text-align: right;
}

.login-wrapper .input-group .right .login-captcha {
    box-sizing: border-box;
    width: 110px;
    height: 38px;
    cursor: pointer;
    border: 1px solid #e6e6e6;
    border-radius: 2px !important;
}

#message {
    height: 18px;
    margin-top: 5px;
    color: red;
}

.login-copyright {
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
    text-align: center;
    color: #eee;
}

@media screen and (min-height: 550px) {
    .login-wrapper {
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        width: 100%;
        margin: -250px auto 0;
    }

    .login-copyright {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

@-webkit-keyframes scale {
    0% {
        opacity: .3;
        transform: scale(.5)
    }
    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes scale {
    0% {
        opacity: .3;
        -ms-transform: scale(.5);
        transform: scale(.5)
    }
    100% {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1)
    }
}