/*登陆页面*/
.login{
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: url(../../images/login.png);
    background-size: 100% 100%;
}
.login .login-form{
    padding: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 1px rgba(0,0,0,.2);
    background: rgba(255, 255, 255, .9);
    min-width: 400px;
}
.login .login-form input{
    width: auto;
}
.login .login-form .logo{
    margin-bottom: 15px;
    width: 250px;
}
.login .login-form .logo img{
    width: 250px;
}
.login .form-group{
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    padding: 5px 0px;
    background: #fff;
}
.login .form-group:last-child{
    border: none;
    box-shadow: none;
    background: none;
}
.login .form-control{
    border: none;
    box-shadow: none;
}
.login .validate-code{
    position: absolute;
    width: 80px;
    height: 40px;
    right: 40px;
    margin-top: -1px;
}

.singleReg{
    float: right;
    margin: 10px 0;
    color:#4075d6;
    cursor:pointer;
}