.login-banner {
    width: 100%;
    height: 100vh;
    min-height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.login-banner video {
    object-fit: fill;
}
.login-banner .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-banner .content {
    width: 460px;
    height: 560px;
    margin-bottom: 40px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-banner .title {
    font-size: 22px;
    color: #000000;
    font-weight: 500;
    line-height: 30px;
    height: 30px;
    font-family: PingFangSC-Medium;
    margin-top: 81px;
    margin-bottom: 16px;
}
.login-banner .input-title {
    font-size: 12px;
    color: #000000;
    font-weight: 500;
    font-family: PingFangSC-Medium;
    line-height: 17px;
    height: 17px;
    width: 280px;
    margin-top: 21px;
}
.login-banner .input-group {
    margin-top: 10px;
    width: 280px;
    height: 38px;
    position: relative;
}
.login-banner .input-group i {
    position: absolute;
    z-index: 1;
    left: 9px;
    top: 7px;
}
.login-banner .input-group input {
    width: 280px;
    height: 38px;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    padding-left: 39px;
    box-sizing: border-box;
}
.login-banner ::placeholder {
    font-size: 12px;
    color: #9e9e9e;
    font-family: PingFangSC-Regular;
}

.login-banner .user-icon {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("images/login/user-icon.png");
    background-size: 24px 24px;
}
.login-banner .password-icon {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("images/login/password-icon.png");
    background-size: 24px 24px;
}
.login-banner .error-icon {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("images/login/error-icon.png");
    background-size: 24px 24px;
}

.login-banner .error-message {
    height: 24px;
    margin-top: 20px;
}
.login-banner .error-message .error-content {
    font-size: 12px;
    color: #ff0000;
    font-family: PingFangSC-Regular;
    display: flex;
    align-items: center;
}
.login-banner .error-message .error-content.hide {
    display: none;
}
.login-banner .error-message .error-content.showmessage {
    display: flex;
}
.login-banner .error-message i {
    margin-right: 6px;
}
.login-banner .submit-button {
    width: 280px;
    height: 38px;
    background: #F56A00;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    font-family: PingFangSC-Medium;
    margin-top: 19px;
}
.login-banner .submit-button:hover {
    background: #DD6000;
}
