.account-container {
    width: 100%;
    height: 100%;
    background: #ddd url(/public/img/res/bg.jpg) center center/cover;
}
.account-container .logo-wrap {
    margin: 100px auto 40px;
    width: 400px;
    height: 100px;
}
.account-container .account-wrap {
    margin: 0 auto;
    width: 460px;
    padding: 40px 30px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #fff;
    font-size: 13px;
}
.account-container .account-wrap .top {
    padding-left: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.account-container .account-wrap .top h1 {
    line-height: 26px;
    font-size: 15px;
    font-weight: 700;
    color: #050505;
}
.account-container .account-wrap .form {
    padding-top: 28px;
    padding-left: 10px;
    display: flex;
    justify-content: flex-start;
}
.account-container .account-wrap .form .left {
    width: 292px;
}
.account-container .account-wrap .form .right {
    margin-left: 10px;
}
.account-container .account-wrap .form .right .button {
    width: 64px;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    color: #fff;
    background: #6a6a6a;
    border: none;
    outline: 0;
    cursor: pointer;
}
.account-container .account-wrap .form .input-group {
    display: inline-flex;
    width: 100%;
    min-height: 24px;
    margin-bottom: 10px;
}
.account-container .input-group .label {
    width: 62px;
    line-height: 24px;
    font-weight: 700;
    color: #525252;
}
.account-container .input-group .input {
    padding: 0 4px;
    width: 228px;
    height: 24px;
    line-height: 22px;
    font-size: 12px;
    font-weight: 400;
    color: #757575;
    border: 1px solid #ddd;
    box-sizing: border-box;
}
.account-container .input-group .input::-webkit-input-placeholder {
    color: #a6a6a6;
    font-size: 12px;
}
.account-container .input-group .preview {
    width: 120px;
    height: 120px;
    border: 1px solid #191919;
    border-radius: 50%;
    overflow: hidden;
}
.account-container .account-wrap .bottom {
    margin-top: 24px;
    padding-left: 10px;
}
.account-container .account-wrap .bottom p {
    line-height: 1.7;
}
.account-container .account-wrap .bottom p a {
    font-weight: 700;
    color: #757575;
}
.account-container .account-wrap .left .input-box {
    position: relative;
}
@media (max-width: 640px) {
    .account-container {
        background: #191919 url(/public/img/res/bg_m.jpg) center center/cover;
        overflow: hidden;
    }
    .account-container .account-wrap {
        width: 100%;
        padding: 20px 0;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.4);
    }
    .account-container .account-wrap .bottom p a,
    .account-container .account-wrap .top h1,
    .account-container .input-group .label {
        color: #fff;
    }
}
.errorTips {
    line-height: 2;
    font-size: 13px;
    font-weight: 700;
    color: red;
}
