/** 背景及字体 **/
html,body .login{
    background: #f1f4f5;
    font: 14px 'Microsoft YaHei', Arial, Lucida Grande, Tahoma, sans-serif;
}
/** 去掉链接下划线 **/
html a{
    text-decoration: none;
}
/*顶部LOGO*/
.nav{
    width: 100%;
    height: 100px;
    background-color: #000;
    text-align: center;
}
.nav .logo{
    width: 192px;
    height: 53px;
    margin-top: 25px; 
    display: inline-block;
    background: url(adminimg/loginadmin.png) no-repeat center;
    background-size: cover;
}
/** 登录 DIV **/
#login {
    width:400px;
    padding: 20px 10px 20px 10px;
    margin-top:50px; 
    background-color: #fff;
    box-shadow:0 4px 10px -1px rgba(200, 200, 200, 0.7);
    border-radius: 10px;
}
/** 替换 logo **/
.login h1 a{
    background: none;
    width:400px;
    /*margin: 0 auto 10px;*/
    text-indent: 0;
    height: 40px;
}

/** 提示 **/
.updated, .login .message,.login #login_error {
    background:#fff;
    border: none;
    border-radius:5px;
    text-align: center;
    margin:3px auto;
    padding: 2px;
    height:0px;
    visibility:hidden;
}
/** 表单 **/
.login form {
    background:#fff;
    border: none;
    margin: 0px;
    padding: 10px 50px;
    border-radius:5px;
    box-shadow:none;
}
#loginform, #registerform, #lostpasswordform{
    background:#fff;
    /*border: 1px solid #ccc;*/
}
/** 按钮 **/
.button-primary,.submit .button-primary,#login form .submit input {
    width:100%;
    height:45px;
    line-height:40px;
    margin: 10px auto;
    padding: auto 50px;
    font-weight: bold;
    border:none;
    font-size: 20px;
}