:root {
    --auth-bg: #070806;
    --auth-panel: rgba(13, 14, 12, 0.92);
    --auth-gold: var(--brand-primary);
    --auth-gold-light: var(--brand-primary);
    --auth-border: rgba(var(--brand-primary-rgb), 0.72);
    --auth-text: #f5f2ec;
    --auth-muted: #aaa9a4;
    --auth-input: rgba(26, 27, 25, 0.92);
    --auth-error: #ffb7ad;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--auth-bg);
}

body.auth-page {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--auth-bg);
    color: var(--auth-text);
    font-family: "Montserrat", sans-serif;
}

.auth-page__background,
.auth-page__overlay {
    position: fixed;
    inset: 0;
}

.auth-page__background {
    background:
        radial-gradient(circle at 50% 18%, rgba(81, 57, 29, 0.22), transparent 34%);
}

.auth-page__overlay {
    background:
        linear-gradient(180deg, rgba(4, 5, 3, 0.56), rgba(4, 5, 3, 0.86) 48%, rgba(4, 5, 3, 0.97)),
        radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.52) 78%);
}

.auth-shell {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(100%, 760px);
    min-height: 100vh;
    margin: 0 auto;
    padding: clamp(34px, 7vh, 76px) 28px 44px;
    flex-direction: column;
    align-items: center;
}

.auth-brand {
    width: 100%;
    text-align: center;
}

.auth-brand__shield {
    display: block;
    width: clamp(92px, 12vw, 136px);
    height: clamp(92px, 12vw, 136px);
    margin: 0 auto 20px;
    object-fit: contain;
}

.auth-brand__mission,
.auth-footer,
.auth-return,
.auth-field label {
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.auth-brand__mission {
    margin: 0 0 18px;
    color: #d6a888;
    font-size: clamp(0.67rem, 1.7vw, 0.84rem);
    font-weight: 500;
}

.auth-brand h1 {
    margin: 0;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 8vw, 5.35rem);
    font-weight: 500;
    letter-spacing: 0.015em;
    line-height: 0.94;
    text-transform: uppercase;
}

.auth-brand__subtitle {
    margin: 13px 0 30px;
    color: #c6c5c1;
    font-size: clamp(0.86rem, 2vw, 1.04rem);
}

.auth-card {
    width: 100%;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid var(--auth-border);
    border-radius: 18px;
    background: var(--auth-panel);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(10px);
}

.auth-form {
    display: grid;
    gap: 25px;
}

.auth-fragment-heading {
    margin-bottom: 25px;
    text-align: center;
}

.auth-fragment-heading h2 {
    margin: 0 0 8px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.15rem;
    font-weight: 600;
    text-transform: uppercase;
}

.auth-fragment-heading p {
    margin: 0;
    color: var(--auth-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.auth-login__resolved-identifier {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: -8px 0 24px;
    color: var(--auth-muted);
    font-size: 0.9rem;
    overflow-wrap: anywhere;
    text-align: center;
}

.auth-login__secondary-action {
    margin-top: 14px;
}

.auth-login__secondary-action .auth-link {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
}

.auth-field {
    display: grid;
    gap: 10px;
}

.auth-field__heading {
    display: flex;
    min-height: 20px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.auth-field label {
    color: #f6f2eb;
    font-size: 0.74rem;
    font-weight: 600;
}

.auth-field__error {
    color: var(--auth-error);
    font-size: 0.7rem;
}

.auth-input-wrap {
    position: relative;
}

.auth-identifier-control {
    display: block;
}

.auth-identifier-control.is-phone {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.auth-identifier-control .iti {
    display: block;
    width: 100%;
}

.auth-identifier-control.is-phone .auth-input-wrap > .auth-identifier-icon {
    display: none;
}

.auth-identifier-control.is-phone .auth-input {
    padding-left: 82px;
    border-radius: 7px 0 0 7px;
}

.auth-identifier-control .iti__country-list {
    z-index: 20;
    border: 1px solid var(--auth-gold-light);
    background: var(--auth-panel);
    color: var(--auth-text);
}

.auth-identifier-control .iti__country.iti__highlight {
    background: rgba(var(--brand-primary-rgb), .18);
}

.auth-identifier-control .iti__divider {
    border-bottom-color: rgba(255, 255, 255, .14);
}

.auth-identifier-control .iti__dial-code {
    color: var(--auth-muted);
}

.auth-identifier-status {
    display: none;
    min-width: 178px;
    height: 60px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid #4a4b47;
    border-left: 0;
    border-radius: 0 7px 7px 0;
    background: var(--auth-input);
    color: var(--auth-muted);
    font: 600 .76rem "Montserrat", sans-serif;
    white-space: nowrap;
}

.auth-identifier-control.is-phone .auth-identifier-status {
    display: flex;
}

.auth-identifier-status--valid {
    color: var(--fc-success);
}

.auth-identifier-status--invalid,
.auth-identifier-status--not-mobile {
    color: var(--fc-error);
}

.auth-identifier-status--checking,
.auth-identifier-status--unavailable {
    color: var(--auth-text);
}

.auth-input-wrap > i {
    position: absolute;
    top: 50%;
    left: 19px;
    z-index: 1;
    width: 20px;
    color: #bfc0bd;
    font-size: 1rem;
    text-align: center;
    transform: translateY(-50%);
}

.auth-input {
    display: block;
    width: 100%;
    height: 60px;
    padding: 0 54px 0 55px;
    border: 1px solid #4a4b47;
    border-radius: 7px;
    outline: 0;
    background: var(--auth-input);
    color: #fff;
    font: 500 0.94rem "Montserrat", sans-serif;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.auth-input::placeholder {
    color: #848581;
}

.auth-input:focus {
    border-color: var(--auth-gold-light);
    background: rgba(31, 31, 28, 0.98);
    box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.14);
}

.auth-input.is-invalid,
.auth-input.has-error {
    border-color: #b96457;
}

.auth-input.is-valid {
    border-color: #64655f;
}

.auth-password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    display: grid;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #bfc0bd;
    cursor: pointer;
    place-items: center;
    transform: translateY(-50%);
}

.auth-password-toggle:hover,
.auth-password-toggle:focus-visible {
    color: var(--auth-gold-light);
}

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

.auth-link,
.auth-back,
.auth-cancel {
    padding: 0;
    border: 0;
    background: transparent;
    color: #aaa9a4;
    cursor: pointer;
    font: 500 0.78rem "Montserrat", sans-serif;
}

.auth-link:hover,
.auth-link:focus-visible,
.auth-back:hover,
.auth-back:focus-visible {
    color: #fff;
}

.auth-link--brand {
    color: var(--brand-primary);
}

.auth-button {
    display: flex;
    width: 100%;
}

.auth-button:hover,
.auth-button:focus-visible {
    transform: translateY(-1px);
}

.auth-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 15px;
    color: #a4a39f;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
    height: 1px;
    background: linear-gradient(90deg, transparent, #4b4b47);
    content: "";
}

.auth-divider::after {
    background: linear-gradient(90deg, #4b4b47, transparent);
}

.auth-return {
    display: flex;
    margin: 35px 0 0;
    align-items: center;
    gap: 13px;
    color: var(--brand-primary);
    font-size: 0.72rem;
    font-weight: 500;
    text-decoration: none;
}

.auth-return:hover,
.auth-return:focus-visible {
    color: var(--fc-white);
}

.auth-footer {
    display: flex;
    margin-top: 52px;
    align-items: center;
    flex-direction: column;
    gap: 9px;
    color: #aaa9a4;
    font-size: 0.68rem;
    text-align: center;
}

.auth-footer small {
    color: #82837f;
    font-size: 0.7rem;
    letter-spacing: 0;
    text-transform: none;
}

.auth-footer__lock {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 5px;
    border: 1px solid var(--auth-border);
    border-radius: 50%;
    color: var(--brand-primary);
    place-items: center;
}

.auth-alert,
.auth-feedback {
    margin-bottom: 22px;
    padding: 13px 15px;
    border: 1px solid rgba(185, 100, 87, 0.72);
    border-radius: 7px;
    background: rgba(116, 42, 32, 0.24);
    color: #ffd4cd;
    font-size: 0.82rem;
    line-height: 1.5;
}

.auth-feedback--success {
    margin: 0;
    border-color: rgba(var(--brand-primary-rgb), 0.72);
    background: rgba(var(--brand-primary-rgb), 0.1);
    color: var(--fc-white);
    text-align: center;
}

.auth-context {
    margin: 0 0 22px;
    color: var(--auth-muted);
    font-size: 0.84rem;
    text-align: center;
}

.auth-back,
.auth-cancel {
    justify-self: center;
    color: var(--brand-primary);
}

.auth-strength {
    display: grid;
    gap: 10px;
    color: #b7b7b2;
    font-size: 0.74rem;
    line-height: 1.5;
}

.auth-strength__bars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}

.auth-strength__bars i {
    height: 5px;
    border-radius: 20px;
    background: #4b4c48;
}

.auth-strength__bars .pwBox {
    width: auto;
}

.auth-strength__bars .red_bg { background: #a84235; }
.auth-strength__bars .orange_bg { background: #c57a38; }
.auth-strength__bars .yellow_bg { background: #d7b44f; }
.auth-strength__bars .green_bg { background: #6d9c62; }

@media (max-width: 640px) {
    .auth-shell {
        padding: 26px 16px 34px;
    }

    .auth-brand__shield {
        margin-bottom: 15px;
    }

    .auth-brand h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
    }

    .auth-brand__subtitle {
        margin-bottom: 24px;
        line-height: 1.55;
    }

    .auth-card {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .auth-form {
        gap: 22px;
    }

    .auth-input {
        height: 56px;
    }

    .auth-form__links {
        align-items: flex-end;
        flex-direction: column-reverse;
    }

}

/* Password management uses the same brand-aware visual language as login. */
.auth-recovery .auth-page__background {
    background:
        radial-gradient(circle at 18% 10%, rgba(var(--brand-primary-rgb), 0.24), transparent 32%),
        radial-gradient(circle at 85% 85%, rgba(var(--brand-primary-rgb), 0.12), transparent 42%),
        var(--auth-bg);
}

.auth-recovery .auth-page__overlay {
    background: linear-gradient(145deg, rgba(4, 5, 3, 0.15), rgba(4, 5, 3, 0.68));
}

.auth-recovery .auth-shell {
    width: min(100% - 40px, 560px);
    min-height: 100vh;
    margin-inline: auto;
    padding: clamp(44px, 7vh, 76px) 0 56px;
    align-items: stretch;
}

.auth-recovery .auth-brand {
    text-align: center;
}

.auth-recovery .auth-brand__shield {
    width: min(100%, 180px);
    height: auto;
    max-height: 128px;
    margin: 0 auto 20px;
}

.auth-recovery .auth-brand__mission {
    max-width: 44rem;
    margin: 0 auto 18px;
    color: var(--brand-primary);
    font-size: clamp(0.72rem, 1.25vw, 0.88rem);
    font-weight: 600;
    line-height: 1.45;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.78);
}

.auth-recovery .auth-brand h1 {
    color: var(--fc-white);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.7rem, 4.7vw, 4.15rem);
    font-weight: 700;
    line-height: 0.98;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.72);
}

.auth-recovery .auth-brand__subtitle {
    max-width: 34rem;
    margin: 14px auto 30px;
    color: var(--auth-text);
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    line-height: 1.45;
}

.auth-recovery .auth-card {
    width: 100%;
    padding: 32px;
    border: 1px solid rgba(var(--brand-primary-rgb), 0.46);
    border-radius: 14px;
    background: rgba(10, 11, 10, 0.9);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.auth-recovery .auth-form {
    gap: 18px;
}

.auth-recovery .auth-field {
    gap: 8px;
}

.auth-recovery .auth-input {
    height: 52px;
}

.auth-recovery.auth-reset .auth-field > .auth-input {
    padding: 0 16px;
}

@media (max-width: 640px) {
    .auth-recovery .auth-shell {
        width: min(100% - 32px, 560px);
        padding: 38px 0 42px;
    }

    .auth-recovery .auth-brand__shield {
        width: min(100%, 150px);
        max-height: 108px;
    }

    .auth-recovery .auth-card {
        padding: 26px 20px;
    }

    .auth-recovery .auth-brand h1 {
        font-size: clamp(2.45rem, 11vw, 3.35rem);
    }
}

/* Public login views use the brand presentation resolved by BrandThemeService. */
.auth-login .auth-page__background {
    background-color: var(--auth-bg);
}

.auth-login--freedom .auth-page__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: none;
}

.auth-login--freedom {
    position: relative;
    min-height: 100vh;
}

.auth-login--freedom .auth-login__background > img {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
}

.auth-login--freedom .auth-login__background-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .34) 18%, rgba(0, 0, 0, 0) 40%),
        linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .38) 20%, rgba(0, 0, 0, 0) 40%);
}

.auth-login--revival .auth-page__background {
    background:
        radial-gradient(circle at 18% 10%, rgba(var(--brand-primary-rgb), 0.24), transparent 32%),
        radial-gradient(circle at 85% 85%, rgba(var(--brand-primary-rgb), 0.12), transparent 42%),
        var(--auth-bg);
}

.auth-login--revival .auth-page__overlay {
    background: linear-gradient(145deg, rgba(4, 5, 3, 0.15), rgba(4, 5, 3, 0.68));
}

.auth-login--freedom .auth-login__shell {
    width: min(100% - 40px, 520px);
    margin-inline: auto;
    padding-block: clamp(30px, 4vh, 52px) 40px;
    align-items: center;
    z-index: auto;
}

.auth-login--freedom .auth-login__foreground {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.auth-login--freedom .auth-login__brand {
    width: min(100vw - 52px, 720px);
    text-align: center;
}

.auth-login--freedom .auth-login__text-protected {
    position: relative;
}

.auth-login--freedom .auth-login__text-protected::before {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    background: rgba(0, 0, 0, .24);
    content: "";
    filter: blur(32px);
    pointer-events: none;
}

.auth-login--freedom .auth-login__text-protected > * {
    position: relative;
    z-index: 1;
}

.auth-login--freedom .auth-login__text-protected--identity::before {
    inset: -46px -68px;
    background: rgba(0, 0, 0, .44);
    filter: blur(48px);
}

.auth-login--freedom .auth-login__text-protected--welcome::before {
    inset: -52px -80px;
    background: rgba(0, 0, 0, .52);
    filter: blur(54px);
}

.auth-login--freedom .auth-login__text-protected--return::before {
    inset: -32px -44px;
    background: rgba(0, 0, 0, .42);
    filter: blur(38px);
}

.auth-login--freedom .auth-login__text-protected--footer::before {
    inset: -48px -74px;
    background: rgba(0, 0, 0, .48);
    filter: blur(48px);
}

.auth-login--freedom .auth-brand__shield {
    width: clamp(66px, 5.8vw, 88px);
    height: auto;
    margin: 0 auto 3px;
}

.auth-login__wordmark {
    display: grid;
    gap: 2px;
    color: var(--fc-white);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.75rem, 2.35vw, 2rem);
    font-weight: 700;
    letter-spacing: .035em;
    line-height: .94;
    text-transform: uppercase;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .95), 0 4px 10px rgba(0, 0, 0, .75);
}

.auth-login__wordmark small {
    color: var(--brand-primary);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(.48rem, .7vw, .58rem);
    font-weight: 600;
    letter-spacing: .32em;
    line-height: 1.25;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .72), 0 3px 8px rgba(0, 0, 0, .5);
}

.auth-login--freedom .auth-brand__mission {
    max-width: 31rem;
    margin: clamp(14px, 2vh, 20px) auto;
    color: var(--brand-primary);
    font-size: clamp(.875rem, 1.1vw, 1rem);
    font-weight: 600;
    letter-spacing: .2em;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .72), 0 3px 8px rgba(0, 0, 0, .5);
}

.auth-login--freedom .auth-brand__mission span {
    display: block;
}

.auth-login--freedom .auth-login__brand h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.5rem, 4.3vw, 3.5rem);
    font-weight: 700;
    letter-spacing: .015em;
    line-height: .92;
    white-space: nowrap;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .95), 0 4px 10px rgba(0, 0, 0, .75);
}

.auth-login__heading-accent {
    color: var(--brand-primary);
}

.auth-login--freedom .auth-brand__subtitle {
    margin: 8px auto clamp(18px, 2.3vh, 22px);
    color: var(--fc-white);
    font-size: clamp(.92rem, 1.15vw, 1.05rem);
    font-weight: 400;
    line-height: 1.45;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .95), 0 3px 8px rgba(0, 0, 0, .72);
}

.auth-login--freedom .auth-login__card {
    width: min(100%, 480px);
    padding: 32px;
    border-color: rgba(var(--brand-primary-rgb), .3);
    border-radius: 12px;
    background: rgba(15, 15, 18, .8);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
    backdrop-filter: blur(10px);
}

.auth-login--freedom .auth-form {
    gap: 16px;
}

.auth-login--freedom .auth-field {
    gap: 8px;
}

.auth-login--freedom .auth-input {
    height: 48px;
    border-color: rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
}

.auth-login--freedom .auth-identifier-control.is-phone .auth-input {
    border-radius: 8px 0 0 8px;
}

.auth-login--freedom .auth-identifier-status {
    height: 48px;
    border-color: rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
}

@media (max-width: 420px) {
    .auth-identifier-control.is-phone {
        grid-template-columns: 1fr;
    }

    .auth-identifier-control.is-phone .auth-input {
        border-radius: 7px 7px 0 0;
    }

    .auth-identifier-status {
        width: 100%;
        height: 38px;
        border: 1px solid #4a4b47;
        border-top: 0;
        border-radius: 0 0 7px 7px;
    }

    .auth-login--freedom .auth-identifier-control.is-phone .auth-input {
        border-radius: 8px 8px 0 0;
    }
}

.auth-login--freedom .auth-input:focus {
    border-color: var(--brand-primary);
    background: rgba(255, 255, 255, .08);
}

.auth-login--freedom .auth-input-wrap > i,
.auth-login--freedom .auth-password-toggle {
    color: rgba(255, 255, 255, .66);
}

.auth-login--freedom .auth-form__links {
    margin-top: 0;
}

.auth-login--freedom .auth-divider {
    gap: 15px;
}

.auth-login__action {
    width: 100%;
}

.auth-login--freedom .auth-form__links {
    justify-content: flex-start;
}

.auth-login--freedom .auth-return {
    margin-top: clamp(28px, 4vh, 46px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .95), 0 3px 8px rgba(0, 0, 0, .72);
}

.auth-login--freedom .auth-footer {
    position: relative;
    width: 100%;
    margin-top: clamp(42px, 7vh, 78px);
    display: block;
    color: rgba(245, 242, 236, .86);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .95), 0 3px 8px rgba(0, 0, 0, .72);
}

.auth-login--freedom .auth-login__footer-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 9px;
}

.auth-login--freedom .auth-footer::before,
.auth-login--freedom .auth-footer::after {
    position: absolute;
    top: 23px;
    width: min(32%, 145px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--brand-primary-rgb), .9));
    content: "";
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .75));
}

.auth-login--freedom .auth-footer::before { left: 8%; }

.auth-login--freedom .auth-footer::after {
    right: 8%;
    background: linear-gradient(90deg, rgba(var(--brand-primary-rgb), .9), transparent);
}

.auth-login--freedom .auth-footer__lock {
    order: -1;
    margin-bottom: 1px;
    color: var(--fc-white);
    border-color: rgba(var(--brand-primary-rgb), .9);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .75));
    text-shadow: 0 1px 2px rgba(0, 0, 0, .95), 0 3px 8px rgba(0, 0, 0, .72);
}

.auth-login--freedom .auth-footer small {
    color: rgba(245, 242, 236, .72);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .95), 0 3px 8px rgba(0, 0, 0, .72);
}

@media (max-width: 760px) {
    .auth-login--freedom .auth-login__card {
        width: min(100%, 480px);
        padding: 24px;
    }
}

.auth-login--freedom .auth-login__scripture-wrap {
    position: absolute;
    top: clamp(54px, 10vh, 120px);
    right: clamp(52px, 10vw, 180px);
}

.auth-login--freedom .auth-login__scripture-backdrop {
    position: absolute;
    inset: -40px -50px;
    z-index: -1;
    border-radius: 45%;
    background: rgba(0, 0, 0, .36);
    filter: blur(36px);
    pointer-events: none;
}

.auth-login--freedom .auth-login__scripture {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    color: var(--fc-white);
    text-align: center;
}

.auth-login__scripture span {
    max-width: 12rem;
    font-family: "Mrs Saint Delafield", cursive;
    font-size: clamp(2.5rem, 4.2vw, 3.8rem);
    font-weight: 400;
    line-height: .7;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .72), 0 4px 10px rgba(0, 0, 0, .5);
    transform: rotate(-8deg);
}

.auth-login__scripture small {
    margin-top: 24px;
    padding-top: 11px;
    border-top: 1px solid rgba(var(--brand-primary-rgb), .95);
    color: var(--brand-primary);
    font-size: .54rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .72), 0 2px 6px rgba(0, 0, 0, .5);
}

.auth-login--revival .auth-login__shell {
    width: min(100%, 560px);
    margin-inline: auto;
    align-items: stretch;
}

.auth-login--revival .auth-login__brand {
    text-align: center;
}

.auth-login--revival .auth-login__brand .auth-brand__shield {
    width: min(100%, 230px);
    max-height: 140px;
    margin-inline: auto;
}

.auth-login--revival .auth-login__brand h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.auth-login--revival .auth-login__brand .auth-brand__subtitle {
    margin-inline: auto;
}

.auth-login--revival .auth-login__card {
    background: rgba(10, 11, 10, 0.94);
}

.auth-login--revival .auth-return,
.auth-login--revival .auth-footer {
    justify-content: center;
}

@media (max-width: 760px) {
    .auth-login--freedom .auth-login__shell {
        width: min(100% - 32px, 520px);
        padding-top: 34px;
    }

    .auth-login--freedom .auth-login__brand {
        width: 100%;
    }

    .auth-login--freedom .auth-login__brand h1 {
        white-space: normal;
    }

    .auth-login__scripture-wrap {
        top: 26px;
        right: 22px;
    }

    .auth-login__scripture {
        transform: scale(.72);
        transform-origin: top right;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
