* {
    box-sizing: border-box;
}

:root {
    --auth-accent: var(--color-primary, #ff7b1b);
    --auth-accent-deep: #f25c05;
    --auth-ink: #132238;
    --auth-text: #43546c;
    --auth-muted: #7b8798;
    --auth-surface: rgba(255, 255, 255, 0.86);
    --auth-shadow: 0 28px 90px rgba(15, 23, 42, 0.16);
    --auth-radius-xl: 32px;
}

body.auth-page {
    margin: 0;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    color: var(--auth-ink);
    font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.5;
    background:
        radial-gradient(circle at top left, rgba(255, 136, 67, 0.20), transparent 30%),
        radial-gradient(circle at right 15% top 20%, rgba(22, 119, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #fffaf6 0%, #f7f9fc 48%, #eef3f8 100%);
}

.auth-page a,
.auth-page a:hover,
.auth-page a:focus,
.auth-page a:active {
    text-decoration: none !important;
}

body.auth-page::before,
body.auth-page::after {
    content: "";
    position: fixed;
    z-index: 0;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(12px);
}

body.auth-page::before {
    width: 340px;
    height: 340px;
    left: -120px;
    top: 120px;
    background: rgba(255, 176, 121, 0.26);
}

body.auth-page::after {
    width: 420px;
    height: 420px;
    right: -160px;
    top: 240px;
    background: rgba(37, 99, 235, 0.12);
}

.auth-page .footer,
.auth-main {
    position: relative;
    z-index: 1;
}

.auth-main {
    width: 100%;
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: clamp(36px, 6vh, 92px) 20px clamp(28px, 5vh, 64px);
}

.auth-main > .auth-panel {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.auth-scene {
    max-width: 1180px;
    margin: 0 auto;
}

.auth-scene--compact {
    max-width: 760px;
}

.auth-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--auth-radius-xl);
    overflow: hidden;
    background: var(--auth-surface);
    box-shadow: var(--auth-shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.auth-panel--compact {
    max-width: 680px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

.auth-panel--with-banner {
    max-width: 1180px;
}

.auth-panel--no-banner {
    max-width: 680px;
    grid-template-columns: 1fr;
}

.auth-main > .auth-panel.auth-panel--form-narrow {
    max-width: 550px;
}

.auth-panel__form {
    padding: 40px 44px 36px;
}

.auth-panel__head {
    margin-bottom: 22px;
}

.auth-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 123, 27, 0.10);
    color: var(--auth-accent-deep);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.auth-panel__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--auth-ink);
}

.auth-panel__subtitle {
    margin: 12px 0 0;
    max-width: 32em;
    font-size: 15px;
    color: var(--auth-text);
}

.auth-security,
.auth-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.auth-security__item,
.auth-steps__item,
.auth-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: var(--auth-text);
    font-size: 13px;
    font-weight: 600;
}

.auth-security__item::before,
.auth-steps__item::before,
.auth-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--auth-accent), #ffb068);
    box-shadow: 0 0 0 5px rgba(255, 123, 27, 0.10);
}

.auth-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 6px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(237, 242, 247, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.auth-tabs__btn {
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--auth-muted);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-tabs__btn:hover {
    color: var(--auth-ink);
}

.auth-tabs__btn--active {
    color: var(--auth-ink);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
}

.auth-form {
    margin: 0;
}

.auth-form--hidden {
    display: none;
}

.auth-form__group {
    margin-bottom: 16px;
}

.auth-form__group--primary {
    margin-bottom: 10px;
}

.auth-form__group--with-btn {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.auth-form__group--with-btn .auth-form__label,
.auth-form__label--flex {
    flex: 1;
    min-width: 0;
}

.auth-form__label {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(248, 250, 252, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.auth-form__label:focus-within {
    background: #ffffff;
    border-color: rgba(255, 123, 27, 0.42);
    box-shadow: 0 0 0 4px rgba(255, 123, 27, 0.10);
    transform: translateY(-1px);
}

.auth-form__icon {
    flex: 0 0 20px;
    width: 20px;
    margin-right: 12px;
    font-size: 16px;
    color: #64748b;
    text-align: center;
}

.auth-form__input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--auth-ink);
    font-size: 16px;
    line-height: 1.5;
}

.auth-form__input::placeholder {
    color: #98a2b3;
}

.auth-form__input--password {
    padding-right: 42px;
}

.auth-form__label--password .auth-form__input {
    padding-right: 42px;
}

.auth-form__hint {
    margin: 0 0 20px;
    color: var(--auth-muted);
    font-size: 13px;
}

.auth-form__code-btn,
.auth-form__submit {
    border: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.auth-form__code-btn {
    flex: 0 0 auto;
    min-width: 134px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--auth-accent), #ff9c47);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(242, 92, 5, 0.18);
    white-space: nowrap;
}

.auth-form__code-btn:hover,
.auth-form__submit:hover {
    transform: translateY(-1px);
}

.auth-form__code-btn:disabled,
.auth-form__submit:disabled {
    opacity: 0.62;
    cursor: not-allowed;
    transform: none;
}

.auth-form__options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 16px 0 22px;
}

.auth-form__options--stacked {
    justify-content: flex-start;
}

.auth-form__remember {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--auth-text);
    font-size: 14px;
}

.auth-form__remember--wrap {
    flex-wrap: wrap;
    line-height: 1.6;
}

.auth-form__remember input[type="checkbox"] {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--auth-accent);
}

.auth-form__link {
    color: var(--auth-accent-deep);
    text-decoration: none;
    font-weight: 700;
}

.auth-form__link:hover {
    text-decoration: underline;
}

.auth-policy-link,
.auth-policy-link:hover,
.auth-policy-link:focus,
.auth-policy-link:active {
    color: var(--auth-accent-deep);
    font-weight: 700;
}

.auth-form__submit {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--auth-accent), #ff8f38);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 20px 32px rgba(242, 92, 5, 0.20);
}

.auth-form__label--password {
    padding-right: 12px;
}

.auth-form__toggle,
.auth-form__pwd-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #98a2b3;
    cursor: pointer;
    transition: color 0.2s ease;
}

.auth-form__toggle:hover,
.auth-form__pwd-toggle:hover {
    color: var(--auth-accent-deep);
}

.auth-third {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.auth-third--tips {
    margin-top: 20px;
}

.auth-third__title {
    position: relative;
    margin: 0 0 18px;
    text-align: center;
    color: var(--auth-muted);
    font-size: 14px;
}

.auth-third__title::before,
.auth-third__title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 70px);
    height: 1px;
    background: rgba(148, 163, 184, 0.22);
}

.auth-third__title::before {
    left: 0;
}

.auth-third__title::after {
    right: 0;
}

.auth-third__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.auth-third__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    color: var(--auth-ink);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.auth-third__item:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 123, 27, 0.20);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.auth-third__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 22px;
}

.auth-third__item--wechat .auth-third__icon {
    color: #20b85a;
}

.auth-third__item--alipay .auth-third__icon {
    color: #1677ff;
}

.auth-third__name {
    font-size: 15px;
    font-weight: 700;
}

.auth-extra {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.auth-extra__link {
    color: var(--auth-text);
    text-decoration: none;
    font-size: 14px;
}

.auth-extra__link:hover {
    color: var(--auth-accent-deep);
}

.auth-third__mobile-reg {
    display: none;
    margin-top: 16px;
    text-align: center;
    color: var(--auth-text);
    font-size: 14px;
}

.auth-third__mobile-reg a {
    color: var(--auth-accent-deep);
    font-weight: 700;
    text-decoration: none;
}

.auth-third__note {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

.auth-panel__banner {
    position: relative;
    min-height: 100%;
    background: #111827;
}

.auth-panel__banner-image,
.auth-panel__banner-link,
.auth-panel__banner-overlay {
    position: absolute;
    inset: 0;
}

.auth-panel__banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-panel__banner-link {
    z-index: 1;
}

.auth-panel__banner-overlay {
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(9, 16, 30, 0.22) 0%, rgba(9, 16, 30, 0.68) 100%),
        linear-gradient(135deg, rgba(255, 123, 27, 0.18), transparent 52%);
}

.auth-banner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    padding: 46px 38px;
    color: #ffffff;
    pointer-events: none;
}

.auth-banner__eyebrow {
    display: inline-flex;
    align-self: flex-start;
    min-height: 32px;
    padding: 0 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.auth-banner__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
}

.auth-banner__text {
    margin: 14px 0 0;
    max-width: 24em;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
}

.auth-banner__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.auth-banner__metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.auth-banner__metric strong {
    font-size: 24px;
    line-height: 1;
}

.auth-banner__metric span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
}

.auth-banner__card {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(14, 21, 36, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.auth-banner__card-label,
.auth-sidecard__label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--auth-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.auth-banner__card p,
.auth-sidecard__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.auth-sidecard {
    margin-top: 24px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 248, 243, 0.92), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(255, 123, 27, 0.14);
}

.auth-sidecard--soft {
    background: linear-gradient(180deg, rgba(245, 248, 252, 0.94), rgba(255, 255, 255, 0.94));
    border-color: rgba(37, 99, 235, 0.10);
}

.auth-sidecard__title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--auth-ink);
}

.auth-sidecard__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.auth-utility {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.auth-utility--end {
    justify-content: flex-end;
}

.auth-utility__back,
.auth-utility__aside {
    font-size: 14px;
    color: var(--auth-text);
}

.auth-utility__back {
    text-decoration: none;
    font-weight: 700;
}

.auth-utility__back:hover {
    color: var(--auth-accent-deep);
}

.auth-register-page .auth-panel__form {
    padding-top: 48px;
}

.auth-register-page .auth-utility {
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 34px;
}

.auth-register-page .auth-utility__aside,
.auth-register-page .auth-utility__back {
    line-height: 1.4;
}

.auth-register-page .auth-utility__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 123, 27, 0.08);
    color: var(--auth-accent-deep);
}

.auth-register-page .auth-panel__title {
    margin-bottom: 12px;
    line-height: 1.22;
}

.auth-register-page .auth-panel__subtitle {
    margin-top: 0;
    margin-bottom: 22px;
    line-height: 1.7;
}

.auth-forget-page .auth-panel__form {
    padding-top: 48px;
}

.auth-forget-page .auth-utility {
    justify-content: flex-end;
    margin-bottom: 34px;
}

.auth-forget-page .auth-utility__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 123, 27, 0.08);
    color: var(--auth-accent-deep);
    line-height: 1.4;
}

.auth-forget-page .auth-panel__title {
    margin-bottom: 12px;
    line-height: 1.22;
}

.auth-forget-page .auth-panel__subtitle {
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.7;
}

.auth-layer.layui-layer {
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 26px 80px rgba(15, 23, 42, 0.22) !important;
}

.auth-layer .layui-layer-title {
    height: 56px;
    line-height: 56px;
    background: #ffffff;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    color: var(--auth-ink);
    font-size: 16px;
    font-weight: 700;
}

.auth-layer .layui-layer-content {
    background: #ffffff;
}

.auth-layer-article {
    max-height: calc(80vh - 110px);
    padding: 18px 20px 22px;
    overflow: auto;
    color: var(--auth-text);
    line-height: 1.8;
}

.auth-layer-article__empty {
    margin: 0;
    color: var(--auth-muted);
}

.auth-layer-qrcode {
    padding: 24px;
    text-align: center;
}

.auth-layer-qrcode__frame {
    width: min(100%, 360px);
    height: 360px;
    border: 0;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
}

.auth-layer-qrcode__text {
    margin: 16px 0 0;
    color: var(--auth-text);
    font-size: 14px;
}

.auth-page .footer {
    background: transparent;
    margin-top: 0;
    flex: 0 0 auto;
}

@media (max-width: 1080px) {
    .auth-panel {
        grid-template-columns: 1fr;
    }

    .auth-panel__banner {
        min-height: 420px;
        order: -1;
    }

    .auth-banner {
        padding: 32px 30px;
    }

    .auth-banner__title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .auth-main {
        align-items: flex-start;
        padding: 28px 12px 36px;
    }

    .auth-panel__form {
        padding: 28px 22px 24px;
    }

    .auth-panel__title {
        font-size: 28px;
    }

    .auth-panel__subtitle {
        font-size: 14px;
    }

    .auth-utility {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-form__group--with-btn {
        flex-direction: column;
    }

    .auth-form__code-btn,
    .auth-form__submit {
        min-height: 54px;
    }

    .auth-third__list,
    .auth-banner__metrics {
        grid-template-columns: 1fr;
    }

    .auth-extra {
        display: none;
    }

    .auth-third__mobile-reg {
        display: block;
    }

    .auth-panel__banner {
        min-height: 340px;
        overflow: hidden;
        background: #eef8ff;
        border-radius: 24px 24px 0 0;
    }

    .auth-panel__banner-image {
        height: calc(100% + 2px);
        object-position: center top;
        transform: translateY(-1px);
    }

    .auth-banner__title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .auth-main {
        padding-top: 28px;
        padding-bottom: 32px;
    }

    .auth-panel {
        border-radius: 24px;
    }

    .auth-panel__form {
        padding: 24px 16px 20px;
    }

    .auth-panel__banner {
        overflow: hidden;
        background: #eef8ff;
    }

    .auth-panel__banner-image {
        height: calc(100% + 2px);
        object-position: center top;
        transform: translateY(-1px);
    }

    .auth-tabs {
        grid-template-columns: 1fr;
    }

    .auth-tabs__btn {
        height: 44px;
    }

    .auth-form__label,
    .auth-form__code-btn,
    .auth-form__submit {
        min-height: 54px;
        border-radius: 16px;
    }

    .auth-security,
    .auth-steps,
    .auth-sidecard__grid {
        gap: 8px;
    }

    .auth-security__item,
    .auth-steps__item,
    .auth-pill {
        min-height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }

    .auth-banner__metric strong {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .auth-register-page .auth-main {
        padding-top: 76px;
    }

    .auth-register-page .auth-panel {
        border-radius: 24px;
    }

    .auth-register-page .auth-panel__form {
        padding-top: 30px;
    }

    .auth-register-page .auth-utility {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
        margin: 0 0 24px;
        padding: 11px 14px;
        border-radius: 16px;
        background: rgba(248, 250, 252, 0.86);
        border: 1px solid rgba(148, 163, 184, 0.16);
    }

    .auth-register-page .auth-utility__aside,
    .auth-register-page .auth-utility__back {
        font-size: 14px;
        line-height: 1.4;
    }

    .auth-register-page .auth-utility__back {
        padding: 2px 0;
    }

    .auth-register-page .auth-panel__title {
        max-width: 100%;
        font-size: 26px;
        line-height: 1.28;
        letter-spacing: -0.02em;
    }

    .auth-register-page .auth-panel__subtitle {
        margin-top: 10px;
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 1.7;
    }

    .auth-register-page #registerForm {
        margin-top: 0;
    }

    .auth-forget-page .auth-main {
        padding-top: 64px;
    }

    .auth-forget-page .auth-panel {
        border-radius: 24px;
    }

    .auth-forget-page .auth-panel__form {
        padding-top: 30px;
    }

    .auth-forget-page .auth-utility {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        margin: 0 0 24px;
        padding: 11px 14px;
        border-radius: 16px;
        background: rgba(248, 250, 252, 0.86);
        border: 1px solid rgba(148, 163, 184, 0.16);
    }

    .auth-forget-page .auth-utility__back {
        min-height: auto;
        padding: 2px 0;
        background: transparent;
        font-size: 14px;
        line-height: 1.4;
    }

    .auth-forget-page .auth-panel__title {
        font-size: 26px;
        line-height: 1.28;
        letter-spacing: -0.02em;
    }

    .auth-forget-page .auth-panel__subtitle {
        margin-top: 10px;
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 380px) {
    .auth-register-page .auth-panel__title {
        font-size: 24px;
    }

    .auth-register-page .auth-utility {
        margin-bottom: 20px;
    }

    .auth-forget-page .auth-panel__title {
        font-size: 24px;
    }

    .auth-forget-page .auth-utility {
        margin-bottom: 20px;
    }
}
