body {
    background-color: #F5F5F5;
}
.login {
    text-align: center;
    width: 420px;
    margin: 0 auto;
    margin-top: 10%;
    
    .form {
        width: 420px;
        // height: 358px;
        background-color: #fff;
        margin-top: 30px;
        padding-bottom: 50px;
        .title {
            font-size: 16px;
            color: #333;
            text-align: center;
            padding-top: 50px;
            padding-bottom: 30px;
        }
        .inp-text {
            padding-left: 40px;
            width: 300px;
            height: 40px;
            border:1px solid rgba(211,211,211,1);
            border-radius:2px;
            background:rgba(255,255,255,1);
            box-sizing: border-box;
            margin: 10px auto;
        }
        .inp-text.username {
            background: url(i/icon_Employee@2x.png) 10px 10px no-repeat;
        }
        .inp-text.password {
            width: 190px;
            display: inline-block;
            background: url(i/icon_lock@2x.png) 10px 10px no-repeat;
        }
        .inp-btn-line {
            width:100px;
            height:40px;
            border-radius:2px;
            border:1px solid rgba(237,50,42,1);
            background-color: #fff;
            margin-left: 10px;
            color: rgba(237,50,42,1);
        }
        .inp-btn-line-disable {
            
            width:100px;
            height:40px;
            border-radius:2px;
            background-color: #fff;
            margin-left: 10px;
            border: 1px solid rgba(211,211,211,1);
            color: #999;
        }
        .inp-btn-full {
            margin: 20px auto;
            display: block;
            width:300px;
            height:40px;
            color: #fff;
            background:rgba(237,50,42,1);
            border-radius:2px;
            outline: none;
            border: none;
        }
        .err-tips {
            height: 12px;
            color: #F12828;
            display: none;
            text-align: left;
            padding-left: 60px;
        }
        .tips {
            font-size: 12px;
            color: #999;
            .em {
                color: #0066CC;
                text-decoration: underline;
                cursor: pointer;
            }
        }
    }
    
    ::-moz-placeholder { color: #C9C9C9; font-size: 12px;}
    ::-webkit-input-placeholder { color:#C9C9C9;font-size: 12px; }
    :-ms-input-placeholder { color:#C9C9C9; font-size: 12px;}
}