body{
    background-color: var(--el-bg-color);
}
.login-wrap {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)), url(../imgs/login/bg_page.webp);
    background-repeat: repeat;
    background-size: auto;
    padding: 32px 16px;
}

.dark-mode .login-wrap {
     background-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url(../imgs/login/bg_page.webp);
}

.login-logo {
    display: block;
    width: 78px;
    height: 70px;
    margin: 0 auto;
    background-image: url(../imgs/login/logo.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.dark-mode .login-logo{
    background-image: url(../imgs/header/logo_dark.png);
}

.login-logo img {
    display: block;
    width: 100%;
    height: 100%;
}

.login-form-wrap {
    margin-top: 32px;
    background: var(--el-bg-color);
    border-radius: 10px;
    padding: 24px 28px 32px;
}

.form-title {
    font-size: 16px;
    font-family: PingFang SC, PingFang SC-Regular;
    font-weight: Regular;
    text-align: center;
    color: var(--el-text-color-primary);
    line-height: 22.5px;
    margin-bottom: 28px;
}

.form-item {
    margin-bottom: 20px;
}

.form-item-label {
    font-size: 14px;
    font-family: PingFang SC, PingFang SC-Medium;
    font-weight: Medium;
    text-align: left;
    color: var( --el-text-color-primary);
    line-height: 18px;
}

.form-item-input {
    margin-top: 12px;
    height: 44px;
    background: var(--el-bg-color-regular);
    border-radius: 22px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    box-sizing: border-box;
}

.form-item-input img {
    flex: none;
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.form-item-input input {
    flex: auto;
    border: none;
    background-color: transparent;
    font-size: 14px;
    line-height: 17px;
}

.form-item-list .form-item:last-child {
    margin-bottom: 0;
}

.other-opt-row {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remove-box {
    flex: none;
}

.remember {
    font-size: 14px;
    line-height: 16px;
    color: var( --el-text-color-regular);
}

.forget-pw {
    flex: auto;
    margin-left: 12px;
    font-size: 14px;
    font-family: PingFang SC, PingFang SC-Regular;
    font-weight: Regular;
    text-align: right;
    color: #419eff;
    line-height: 17px;
}

.login-btn-row {
    margin-top: 44px;
    padding: 0 22px;

}

.login-btn {
    height: 48px;
    background: #419eff;
    border: 1px solid #419eff;
    border-radius: 25px;
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}
.registry-btn-row{
    margin-top: 16px;
    padding: 0 22px;
}
.registry-btn{
    font-size: 14px;
    font-family: PingFang SC, PingFang SC-Regular;
    font-weight: Regular;
    text-align: center;
    color: #419eff;
    line-height: 17px;
}