html,body{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url(../image/login_bg.jpg) no-repeat center center;
    background-size: cover;
}
.container{
    margin:10%;
    height:380px;
}
.login-logo {
    width: 52%;
    height: 380px;
    line-height: 380px;
    float: left;
    text-align: center;
}

.login-logo .logo-img {
    filter: blur(2px);
    user-select: none;
}
.login-panel {
    width: 46%;
    height: 380px;
    float: right;
    box-sizing: border-box;
    padding-left: 40px;
    background: url(../image/login_panel_line.png) no-repeat left center;
}
.panel-title {
    height: 57px;
    line-height: 55px;
    font-size: 24px;
    color: #fff;
    margin: 25px 0;
    padding-left: 38px;
    user-select: none;
    background: url(../image/login_icon.png) no-repeat left center;
    text-shadow: 1px 1px 0 #263e49;

}

.login-form input:required:invalid {
    box-shadow: none;
}
.login-form input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
}
.login-form .text-label {
    border-radius: 2px;
    display: block;
    position: relative;
    width: 292px;
    height: 30px;
    overflow: hidden;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: 6px center;
    padding: 4px 4px 2px 4px;
    border-width: 1px;
    border-style: solid;
    border-color: #aaa #ddd #ddd #aaa;
    margin-bottom: 10px;
}
.login-form .account{
    background-image: url(../image/login_account.png);
}
.login-form .password{
    background-image: url(../image/login_password.png);
}
.login-form .captcha{
    background-image: url(../image/login_captcha.png);
}

.login-form .captcha.hide {
    display: none;
}

.login-form .captcha-img {
    position: absolute;
    top: 1px;
    right: 1px;
    background: url(../image/loading.gif) no-repeat center center;
    background-size: 32px;
}

.login-form .text{
    outline:none;
    border:0;
    background:transparent;
    margin-left:32px;
    width:260px;
    height:28px;
    line-height:28px;
    font-size:16px;
    color:#333;
    z-index:2;
}
.login-form .button-label {
    margin-top: 20px;
    display: block;
}
.login-form .submit{
    width:302px;
    height:38px;
    overflow: hidden;
    letter-spacing: 0.5em;
    user-select: none;
    border: none;
    display:block;
    background:url(../image/login_submit.png) no-repeat left top;
    font-size:16px;
    font-weight:bold;
    color:#ffffff;
}

.login-form .submit:disabled {
    opacity: .5;
    cursor: wait;
}
.login-form .submit:disabled span{
    display: inline-block;
    margin-top: 2px;
    width: 32px;
    height: 32px;
    background:url(../image/oadmin_logo_32.png) no-repeat center center;
    background-size: 80%;
    filter: invert(100%);
    animation: rotate-keyframes 1s linear infinite;
}

@keyframes rotate-keyframes {

    0% {
        -webkit-transform: rotate(0deg);
    }

    25% {
        -webkit-transform: rotate(90deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    75% {
        -webkit-transform: rotate(270deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }

}

