/*登陆表单样式 start*/
.wrap {
    width: 100%;
    height: 100%;
    background: url("../images/login/login-backgroud.jpg") no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;

}

.loginInfo {
    position: absolute;
    width: 45%;
    height: 70%;
    left: 10%;
    top: 15%;
    float: left;
}

.loginInfo img {
    position: relative;
    width: 100%;
    height: 100%;
}

.loginForm {
    position: absolute;
    width: 30%;
    height: 70%;
    right: 15%;
    top: 15%;
    background: url("/images/login/login-box-background.png");
    background-size: cover;
    color: white;
    float: left;
}

.logoHead {
    text-align: center;
    padding-top: 10%;
    padding-bottom: 10%;
}

.loginFormWrapDiv {
    width: 70%;
    height: 10%;
    margin-left: 15%;
    margin-top: 20px;
    float: left;
}

.inputDiv input {
    background: none;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: white;
    text-indent: 40px;/*文本输入光标的距离*/
    float: left;
    outline: medium;
    border: none;
}

.login_account {
    border-bottom: solid 2px #ccc;
    width: 70%;
    height: 40px;
    background: url(/images/login/login-account-icon.png) no-repeat 0 center;
}

.login_password {
    border-bottom: solid 2px #ccc;
    width: 70%;
    height: 40px;
    background: url(/images/login/login-password-icon.png) no-repeat 0 center;
}

.cardDiv {
    border-bottom: solid 2px #ccc;
    width: 100%;
    height: 40px;
    background: url(/images/login/login-password-icon.png) no-repeat 0 center;
}

.validateCodeDiv div {
   padding-top: 10px;
    float: left;
}
.codeDiv{
    float: right;
}

.submitDiv button {
    width: 100%;
    text-align: center;
}

/*去除input自动回填背景色*/
input:-internal-autofill-previewed,
input:-internal-autofill-selected {
    -webkit-text-fill-color: #FFFFFF !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

