:root {
    --hoi-green: #157347;
    --hoi-green-dark: #0f5132;
    --hoi-green-soft: #eaf7ef;
    --hoi-gold: #f4b400;
    --hoi-ink: #102018;
    --hoi-muted: #637267;
    --hoi-border: #dce8df;
    --hoi-surface: #ffffff;
    --hoi-soft: #f6fbf8;
    --hoi-shadow: 0 20px 50px rgba(16, 32, 24, 0.10);
    --hoi-radius: 28px;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--hoi-ink);
    background: var(--hoi-surface);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

a { color: var(--hoi-green); text-decoration: none; }
a:hover { color: var(--hoi-green-dark); }

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--hoi-green-dark);
    color: #fff;
}

.skip-link:focus { left: 1rem; top: 1rem; }

.app-nav {
    min-height: 86px;
    backdrop-filter: blur(14px);
    z-index: 1040;
}

.brand-logo {
    width: 150px;
    max-height: 54px;
    object-fit: contain;
}

.footer-logo {
    width: 170px;
    max-height: 70px;
    object-fit: contain;
}

.nav-link {
    color: #324238;
    font-size: 1rem;
    font-weight: 600;
}

.nav-link.active,
.nav-link:hover {
    color: var(--hoi-green);
}

.spa-loader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(5px);
}

#spa-content {
    outline: none;
}

.spa-fade-out {
    opacity: 0.15;
    transform: translateY(8px);
    transition: opacity .15s ease, transform .15s ease;
}

.spa-fade-in {
    animation: spaFadeIn .24s ease both;
}

@keyframes spaFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
    background:
        radial-gradient(circle at top left, rgba(21, 115, 71, 0.16), transparent 34rem),
        linear-gradient(135deg, #ffffff 0%, #f3fbf6 100%);
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 22rem;
    height: 22rem;
    right: -7rem;
    top: 6rem;
    border-radius: 999px;
    background: rgba(244, 180, 0, 0.16);
    filter: blur(12px);
}

.section-kicker {
    margin-bottom: 0.75rem;
    color: var(--hoi-green);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.hero-title,
.page-title {
    max-width: 850px;
    font-size: clamp(2.6rem, 6vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
    font-weight: 950;
}

.page-title {
    max-width: 920px;
}

.hero-text,
.page-text {
    max-width: 700px;
    margin-top: 1.25rem;
    color: var(--hoi-muted);
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 650px;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-stats div {
    padding: 1rem;
    border: 1px solid var(--hoi-border);
    border-radius: 20px;
    background: rgba(255,255,255,0.74);
}

.hero-stats dt {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--hoi-green-dark);
}

.hero-stats dd {
    margin: 0;
    color: var(--hoi-muted);
    font-size: 0.9rem;
}

.hero-card,
.detail-panel,
.ticket-display {
    border: 1px solid rgba(21, 115, 71, 0.16);
    border-radius: var(--hoi-radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--hoi-shadow);
}

.hero-card {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-card-logo {
    width: 160px;
    max-height: 82px;
    object-fit: contain;
    margin-bottom: 2rem;
}

.hero-card h2 {
    font-size: 2rem;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.hero-card p { color: var(--hoi-muted); }

.hero-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.hero-card-footer span {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    background: var(--hoi-green-soft);
    color: var(--hoi-green-dark);
    font-weight: 800;
    font-size: 0.88rem;
}

.page-hero {
    padding: 6rem 0 4rem;
    background:
        radial-gradient(circle at top right, rgba(244, 180, 0, 0.16), transparent 28rem),
        linear-gradient(135deg, #ffffff, #f4fbf7);
}

.content-section { padding: 5rem 0; }
.bg-soft { background: var(--hoi-soft); }

.section-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.section-text {
    color: var(--hoi-muted);
    font-size: 1.06rem;
}

.feature-grid,
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-card,
.event-card,
.past-card,
.timeline-card,
.empty-state {
    border: 1px solid var(--hoi-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(16, 32, 24, 0.06);
}

.feature-card,
.timeline-card,
.past-card {
    padding: 1.5rem;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--hoi-green-soft);
    color: var(--hoi-green-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card h3,
.timeline-card h3,
.event-card h3,
.past-card h3,
.empty-state h3 {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.feature-card p,
.timeline-card p,
.event-card p,
.past-card p,
.empty-state p {
    color: var(--hoi-muted);
    margin-bottom: 0;
}

.event-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(16, 32, 24, 0.11);
}

.event-image,
.event-image-placeholder {
    width: 100%;
    height: 210px;
}

.event-image { object-fit: cover; }

.event-image-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--hoi-green-soft), #fff7df);
    color: var(--hoi-green);
    font-size: 3rem;
}

.event-body { padding: 1.35rem; }

.event-badge {
    display: inline-flex;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: var(--hoi-green-soft);
    color: var(--hoi-green-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

.event-badge.alt {
    background: #fff7df;
    color: #7a4f00;
}

.event-meta,
.event-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    color: var(--hoi-muted);
    font-size: 0.9rem;
}

.event-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--hoi-border);
    border-radius: 999px;
    background: #fff;
}

.empty-state {
    padding: 3rem 1.5rem;
    text-align: center;
}

.empty-state i {
    font-size: 2.5rem;
    color: var(--hoi-green);
    margin-bottom: 1rem;
}

.empty-state.compact { padding: 2rem; }

.timeline-card span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--hoi-green);
    color: #fff;
    font-weight: 900;
}

.cta-section {
    padding: 5rem 0;
    background: #fff;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(244, 180, 0, 0.2), transparent 25rem),
        linear-gradient(135deg, var(--hoi-green-dark), var(--hoi-green));
    color: #fff;
}

.cta-card .section-kicker,
.cta-card p {
    color: rgba(255,255,255,0.82);
}

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 950;
    letter-spacing: -0.055em;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.detail-image {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--hoi-shadow);
}

.detail-image.placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--hoi-green-soft), #fff7df);
    color: var(--hoi-green);
    font-size: 4rem;
}

.detail-panel {
    padding: 2rem;
}

.detail-panel h2 {
    font-size: 1.5rem;
    font-weight: 950;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.rich-text {
    color: var(--hoi-muted);
    font-size: 1.04rem;
}

.sticky-panel {
    position: sticky;
    top: 110px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    display: flex;
    gap: .75rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--hoi-border);
}

.detail-list i {
    color: var(--hoi-green);
}

.ticket-display {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
}

.ticket-logo {
    width: 180px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.ticket-code {
    display: inline-flex;
    padding: .65rem 1rem;
    border-radius: 999px;
    background: var(--hoi-green-soft);
    color: var(--hoi-green-dark);
    font-weight: 900;
}

.toast-root {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 4000;
    display: grid;
    gap: .7rem;
}

.app-toast {
    padding: .9rem 1rem;
    min-width: 260px;
    border-radius: 16px;
    color: #fff;
    font-weight: 700;
    box-shadow: var(--hoi-shadow);
    background: var(--hoi-green);
    transition: opacity .25s ease, transform .25s ease;
}

.app-toast.error { background: #b42318; }
.app-toast.hide { opacity: 0; transform: translateY(8px); }

.site-footer {
    padding: 4rem 0 2rem;
    background: #07130d;
    color: #fff;
}

.footer-copy { color: rgba(255,255,255,0.68); }

.footer-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.92);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li { margin-top: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.68); }
.footer-links a:hover { color: #fff; }

.footer-divider {
    border-color: rgba(255,255,255,0.14);
    margin: 2rem 0;
}

.footer-bottom { color: rgba(255,255,255,0.58); }

@media (max-width: 991.98px) {
    .hero-section { padding: 5rem 0 3.5rem; }

    .feature-grid,
    .timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-card,
    .ticket-display {
        align-items: flex-start;
        flex-direction: column;
    }

    .sticky-panel {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        width: 120px;
    }

    .hero-stats,
    .feature-grid,
    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .content-section {
        padding: 3.5rem 0;
    }

    .hero-title,
    .page-title {
        font-size: clamp(2.35rem, 15vw, 4rem);
    }
}

/* ==============================
   RESPONSIVE HARDENING PATCH
   ============================== */

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

body {
    overflow-x: hidden;
}

.app-nav {
    min-height: 92px;
}

.brand-logo {
    width: 190px;
    max-width: 42vw;
    max-height: 72px;
    object-fit: contain;
}

.footer-logo {
    width: 210px;
    max-width: 70vw;
    max-height: 90px;
    object-fit: contain;
}

.hero-section {
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero-title,
.page-title {
    overflow-wrap: anywhere;
    word-break: normal;
}

.hero-title {
    font-size: clamp(2.4rem, 6.8vw, 5rem);
}

.hero-card {
    max-width: 100%;
}

.hero-card-logo {
    width: 190px;
    max-width: 80%;
    max-height: 100px;
}

.page-hero {
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(2.8rem, 6vw, 4rem);
}

.event-card,
.feature-card,
.timeline-card,
.past-card,
.detail-panel,
.ticket-display,
.cta-card {
    max-width: 100%;
}

.auth-shell {
    min-height: calc(100vh - 92px);
    display: grid;
    place-items: center;
    padding: 4rem 1rem;
    background:
        radial-gradient(circle at top left, rgba(21, 115, 71, 0.14), transparent 30rem),
        linear-gradient(135deg, #ffffff, #f4fbf7);
}

.auth-card {
    width: 100%;
    max-width: 520px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid var(--hoi-border);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--hoi-shadow);
}

.auth-logo {
    width: 190px;
    max-width: 70%;
    max-height: 90px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.auth-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 950;
    letter-spacing: -0.055em;
}

.auth-text {
    color: var(--hoi-muted);
}

.dashboard-shell {
    min-height: calc(100vh - 92px);
    padding: 3rem 0;
    background: var(--hoi-soft);
}

.dashboard-card {
    border: 1px solid var(--hoi-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(16, 32, 24, 0.06);
    padding: 1.5rem;
}

.dashboard-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 950;
    letter-spacing: -0.06em;
}

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: clamp(2.35rem, 7vw, 4.4rem);
    }
}

@media (max-width: 991.98px) {
    .app-nav {
        min-height: 82px;
    }

    .brand-logo {
        width: 160px;
        max-height: 64px;
    }

    .navbar-collapse {
        padding: 1rem 0;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar-nav .btn {
        width: 100%;
        margin-top: .5rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: 4.5rem;
    }

    .hero-title {
        font-size: clamp(2.6rem, 10vw, 4.2rem);
        line-height: 1;
    }

    .hero-card {
        margin-top: 1rem;
    }

    .feature-grid,
    .timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-image,
    .event-image-placeholder {
        height: 230px;
    }
}

@media (max-width: 767.98px) {
    .container {
        width: min(100% - 1.5rem, 540px);
    }

    .hero-title,
    .page-title {
        font-size: clamp(2.2rem, 13vw, 3.6rem);
        letter-spacing: -0.06em;
    }

    .hero-text,
    .page-text {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-card h2 {
        font-size: 1.65rem;
    }

    .section-title {
        font-size: clamp(1.9rem, 10vw, 2.8rem);
    }

    .content-section {
        padding: 3rem 0;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-card {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .event-detail-meta {
        display: grid;
    }

    .event-detail-meta span {
        width: 100%;
        border-radius: 16px;
    }
}

@media (max-width: 420px) {
    .brand-logo {
        width: 132px;
        max-width: 56vw;
    }

    .hero-title,
    .page-title {
        font-size: clamp(2rem, 14vw, 3.05rem);
    }

    .hero-card,
    .detail-panel,
    .ticket-display,
    .auth-card {
        border-radius: 20px;
        padding: 1.25rem;
    }

    .hero-card-logo,
    .auth-logo {
        width: 150px;
    }
}
/* ==============================
   AUTH PAGE FINAL DESIGN PATCH
   ============================== */

.auth-shell {
    min-height: calc(100vh - 92px);
    display: grid;
    place-items: center;
    padding: clamp(3rem, 7vw, 6rem) 1rem;
    background:
        radial-gradient(circle at 8% 10%, rgba(21, 115, 71, 0.18), transparent 28rem),
        radial-gradient(circle at 90% 20%, rgba(244, 180, 0, 0.18), transparent 26rem),
        linear-gradient(135deg, #ffffff 0%, #f5fbf7 100%);
}

.auth-card {
    position: relative;
    width: min(100%, 540px);
    padding: clamp(1.5rem, 4vw, 2.75rem);
    border: 1px solid rgba(21, 115, 71, 0.16);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 30px 80px rgba(16, 32, 24, 0.14);
    overflow: hidden;
}

.auth-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 8px;
    background: linear-gradient(90deg, var(--hoi-green), var(--hoi-gold));
}

.auth-logo {
    display: block;
    width: 210px;
    max-width: 78%;
    max-height: 96px;
    object-fit: contain;
    margin: 0 0 1.75rem;
}

.auth-title {
    margin: 0;
    color: var(--hoi-ink);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.065em;
}

.auth-text {
    max-width: 430px;
    margin-top: 0.85rem;
    color: var(--hoi-muted);
    font-size: 1rem;
}

.auth-card .form-label {
    color: var(--hoi-ink);
    font-weight: 800;
    font-size: 0.92rem;
}

.auth-card .form-control {
    min-height: 54px;
    border: 1px solid var(--hoi-border);
    border-radius: 18px;
    background: #fbfffc;
    color: var(--hoi-ink);
    box-shadow: none;
}

.auth-card .form-control:focus {
    border-color: var(--hoi-green);
    box-shadow: 0 0 0 0.25rem rgba(21, 115, 71, 0.14);
}

.auth-card .form-check-input {
    border-color: var(--hoi-border);
}

.auth-card .form-check-input:checked {
    background-color: var(--hoi-green);
    border-color: var(--hoi-green);
}

.auth-card .btn-success {
    min-height: 54px;
    border: none;
    background: linear-gradient(135deg, var(--hoi-green), var(--hoi-green-dark));
    font-weight: 850;
    box-shadow: 0 16px 35px rgba(21, 115, 71, 0.22);
}

.auth-card .btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 45px rgba(21, 115, 71, 0.28);
}

.auth-card a {
    font-weight: 800;
}

.auth-card .alert {
    border-radius: 18px;
    border: 0;
    font-weight: 650;
}

.auth-card .alert-danger {
    color: #842029;
    background: #f8d7da;
}

.auth-card .alert-success {
    color: #0f5132;
    background: #d1e7dd;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--hoi-muted);
    font-size: 0.88rem;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--hoi-border);
}

@media (max-width: 575.98px) {
    .auth-shell {
        padding: 2rem 0.8rem;
        align-items: start;
    }

    .auth-card {
        margin-top: 1rem;
        border-radius: 24px;
        padding: 1.35rem;
    }

    .auth-logo {
        width: 170px;
    }

    .auth-title {
        font-size: clamp(2rem, 12vw, 2.7rem);
    }

    .auth-card .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.75rem;
    }
}

/* AUTH FIX */
.auth-shell {
    min-height: calc(100vh - 92px);
    display: grid;
    place-items: center;
    padding: clamp(3rem, 7vw, 6rem) 1rem;
    background:
        radial-gradient(circle at 8% 10%, rgba(21, 115, 71, 0.18), transparent 28rem),
        radial-gradient(circle at 90% 20%, rgba(244, 180, 0, 0.18), transparent 26rem),
        linear-gradient(135deg, #ffffff 0%, #f5fbf7 100%);
}

.auth-card {
    width: min(100%, 540px);
    padding: clamp(1.5rem, 4vw, 2.75rem);
    border: 1px solid rgba(21, 115, 71, 0.16);
    border-radius: 32px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 30px 80px rgba(16, 32, 24, 0.14);
}

.auth-logo {
    display: block;
    width: 210px;
    max-width: 78%;
    max-height: 96px;
    object-fit: contain;
    margin-bottom: 1.75rem;
}

.auth-title {
    margin: 0;
    color: var(--hoi-ink, #102018);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.065em;
}

.auth-text {
    max-width: 430px;
    margin-top: 0.85rem;
    color: var(--hoi-muted, #637267);
    font-size: 1rem;
}

.auth-card .form-label {
    color: var(--hoi-ink, #102018);
    font-weight: 800;
}

.auth-card .form-control {
    min-height: 54px;
    border: 1px solid var(--hoi-border, #dce8df);
    border-radius: 18px;
    background: #fbfffc;
    box-shadow: none;
}

.auth-card .form-control:focus {
    border-color: var(--hoi-green, #157347);
    box-shadow: 0 0 0 0.25rem rgba(21, 115, 71, 0.14);
}

.auth-card .btn-success {
    min-height: 54px;
    border: none;
    background: linear-gradient(135deg, var(--hoi-green, #157347), var(--hoi-green-dark, #0f5132));
    font-weight: 850;
    box-shadow: 0 16px 35px rgba(21, 115, 71, 0.22);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--hoi-muted, #637267);
    font-size: 0.88rem;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--hoi-border, #dce8df);
}

@media (max-width: 575.98px) {
    .auth-shell {
        padding: 2rem 0.8rem;
        align-items: start;
    }

    .auth-card {
        border-radius: 24px;
        padding: 1.35rem;
    }

    .auth-logo {
        width: 170px;
    }
}
