body{
    height: 100vh;
    background-image: url("../images/bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}
.header{
    height: 62px;
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 2px 11px 0px rgba(8,8,8,0.14);
}
.header .logo{
    height: 32px;
    margin-left: 32px;
    margin-top: 14px;
}

.login-content{
    position: absolute;
    top: 198px;
    right: 15%;
    width: 432px;
    padding: 40px 44px 64px 44px;
    background: #FFFFFF;
    box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.08);
    border-radius: 8px;
    border: 1px solid #DFE2E6;
}
.form-title{
    position: relative;
    height: 32px;
    font-size: 24px;
    font-weight: 600;
    color: #1E2226;
    line-height: 32px;
    margin-bottom: 18px;
}
#error{
    height: 20px;
    line-height: 20px;
    color: red;
}
.input-group{
    height: 46px;
    background: #F5F7FA;
    border-radius: 4px;
    border: 1px solid #F0F2F5;
}
.input-group-addon, .form-control{
    border: 0;
    background-color: transparent;
    box-shadow: none;
}
.input-group-addon{
    padding: 10px 12px !important;
}
.form-control{
    font-size: 14px !important;
    font-weight: 500;
    color: #1E2226;
    padding-left: 0 !important;
}
.form-control::placeholder{
    font-size: 14px !important;
    font-weight: 500;
    color: #8A9099;
}
.form-control:focus{
    box-shadow: none;
}
.input-group-addon img{
    width: 16px;
    height: 16px;
}
.verify-code{
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -15px;
}
.form-title:after{
    content: '';
    position: absolute;
    width: 20px;
    height: 4px;
    background: #006AFF;
    bottom: -10px;
    left: 0;
}
.form-actions{
    display: flex;
    align-items: center;
    margin-top: 64px;
}
.checkbox-left{
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
.checkbox-left  input{
    width: 16px;
    height: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background:url("../images/check.png")no-repeat top center;
    background-size:16px 16px;
    margin: 0;
    margin-right: 8px;
}
.checkbox-left  input:checked{
    background:url("../images/checked.png")no-repeat top center;
    background-size:16px 16px;
}
.remember{
    font-size: 14px;
    font-weight: 500;
    color: #8A9099;
    line-height: 22px;
    white-space: nowrap;
}
.login-btn{
    display: block;
    width: 100%;
    height: 50px;
    background: #006AFF;
    box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.16);
    border-radius: 4px;
    font-size: 16px;
    color: #FFFFFF;
    border: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition-delay: 99999s;
    -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}
.footer{width:100%;position:fixed;bottom:22px;left:0;text-align: center;font-size: 12px;color: #9698A7;line-height: 20px}
.footer a{color: #9698A7}