/* 登录-忘记密码样式 ↓ */
.login-page,
.edit-page,
.forgot-page {
    width: 100%;
    max-width: 700px;
    margin: 88px auto;
    padding: 50px 80px;
    @media screen and (max-width: 824px) {
        padding: 30px 40px;
    }
}
.login-page > .login-title,
.edit-page > .forgot-title,
.forgot-page > .forgot-title {
    font-size: 28px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 100px;
    transform: translateX(-80px);
    @media screen and (max-width: 824px) {
        transform: translateX(-25px);
        margin-bottom: 80px;
    }
}
.login-page > .input-box,
.edit-page > .input-box,
.forgot-page > .input-box {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 55px;
    border: 1px solid #eee;
    position: relative;
}
.forgot-page > .input-send-code {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 55px;
    @media screen and (max-width: 824px) {
        gap: 10px;
        flex-direction: column;
        align-items: end;
    }
}
.forgot-page > .input-send-code > .input-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #eee;
    position: relative;
    @media screen and (max-width: 824px) {
        width: 100%;
    }
}
.forgot-page > .input-send-code > .input-box::after {
    display: block;
    content: "邮箱";
    position: absolute;
    top: -36px;
    left: 0;
    color: #333;
}
.forgot-page > .input-send-code > .send-code {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    @media screen and (max-width: 824px) {
        padding: 8px 15px;
    }
}
.login-page > .input-box::after,
.edit-page > .input-box::after,
.forgot-page > .input-box::after {
    display: block;
    content: "账号";
    position: absolute;
    top: -36px;
    left: 0;
    color: #333;
}
.login-page > .i2 {
    margin-bottom: 20px;
}
.login-page > .i2::after {
    content: "密码";
}
.edit-page > .i1::after {
    content: "原密码" !important;
}
.edit-page > .i2::after {
    content: "密码" !important;
}
.edit-page > .i3::after {
    content: "确认密码" !important;
}
.forgot-page > .i1::after {
    content: "验证码" !important;
}
.forgot-page > .i2::after {
    content: "密码" !important;
}
.forgot-page > .i3::after {
    content: "确认密码" !important;
}
.login-page > .input-box > .input-icon,
.forgot-page > .input-box > .input-icon,
.edit-page > .input-box > .input-icon,
.forgot-page > .input-send-code > .input-box > .input-icon {
    width: 20px;
    height: 20px;
}
.login-page > .input-box > .input,
.forgot-page > .input-box > .input,
.edit-page > .input-box > .input,
.forgot-page > .input-send-code > .input-box > .input {
    outline: none;
    border: none;
    flex: 1;
    height: 100%;
    background-color: transparent;
}
.login-page > .remember-forgot-pwd {
    width: 100%;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.login-page > .remember-forgot-pwd > .forgot-pwd:hover {
    color: #febf8e;
}
.login-page > .remember-forgot-pwd > .remember,
.login-page > .agreement {
    display: flex;
    align-items: center;
    gap: 5px;
    user-select: none;
}
.login-page > .agreement {
    width: 100%;
    margin-top: 20px;
}
.login-page > .remember-forgot-pwd > .remember > #remember,
.login-page > .agreement > #agreement {
    width: 16px;
    height: 16px;
}
.login-page > .remember-forgot-pwd > .remember > label,
.login-page > .agreement > label {
    color: #333;
    font-size: 14px;
    line-height: 16px;
}
.login-page > .agreement span {
    color: #333;
    font-weight: 500;
    cursor: pointer;
    @media screen and (max-width: 824px) {
        cursor: none;
    }
}
.login-page > .remember-forgot-pwd > .forgot-pwd {
    font-size: 14px;
    line-height: 16px;
}
.login-page > .login-btn,
.edit-page > .edit-btn,
.forgot-page > .forgot-btn {
    width: 100%;
    height: 44px;
    color: #fff;
    font-size: 15px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    border-radius: 10px;
    margin-top: 55px;
}
