.bg-login {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ebefee;
}
.login-box {
    position: relative;
    top: 180px;
    width: 420px;
    height: 500px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 6px;
    /*box-shadow: 0 0 2px #ccad52;*/
    background-color: #fff;
    z-index: 9;
    box-sizing: border-box;
}
.login-box h4 {
    font-size: 16px;
    color: #ce1312;
    text-align: center;
    margin-bottom: 50px;
}
.login-box input::placeholder{
    color: #999;
}
.login-box > input,.login-box > button{
    display: block;
    width: 100%;
    height: 40px;
    font-size: 18px;
    color: #999;
    padding: 0 16px;
    margin-bottom: 36px;
    background: #f2f0f0;
    border-radius: 4px;
    box-sizing: border-box;
}
.login-box > button{
    cursor: pointer;
}
.login-box input.hover{
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.login-box .security-code{
    margin-bottom: 50px;
}
.security-code input{
    width: 120px;
    height: 40px;
    font-size: 18px;
    color: #999;
    padding: 0 16px;
    background: #f2f0f0;
    border-radius: 4px;
}
.security-code button{
    width: 140px;
    height: 40px;
    font-size: 18px;
    color: #ccad52;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.login-box p {
    font-size: 14px;
    color: #999;
    text-align: center;
}
.login-box p a{
    color: #ccad52;
}