/* ==========================================================================
   EcoAfric auth pages — login, register, partner register, forgot password.

   Aligned with the shared .eco-pg-* page system in style.css:
   green-zomp #2D5F3F · green-dark #01806C · green-light #E6F7F4
   light-grey #E8EDF1 · dark-grey #4F5E71 · darker-grey #1E1E1E

   The markup keeps its existing class names and element IDs, so every form's
   JavaScript keeps working — this file only changes how it all looks.
   ========================================================================== */

.auth-page {
    --auth-ink: #121212;
    --auth-body: #4f5e71;
    --auth-line: #e8edf1;
    --auth-green: #2d5f3f;
    --auth-teal: #01806c;
    --auth-mint: #e6f7f4;
    --auth-forest: #16302a;
    --auth-amber: #f4a259;

    position: relative;
    isolation: isolate;
    min-height: 100vh;
    /* style.css pads <body> to clear the site's fixed header; auth pages have none */
    padding-top: 0 !important;
    background: #f7faf9 !important;
    color: var(--auth-ink);
}

.auth-page::before,
.auth-page::after {
    display: none !important;
}

.auth-page > * {
    position: relative;
    z-index: 1;
}

.auth-page:not(.auth-provider-page) .min-h-screen {
    min-height: 100vh !important;
    padding: 0 !important;
}

.auth-page:not(.auth-provider-page) .container {
    position: relative;
    z-index: 1;
    max-width: none !important;
    padding: 0 !important;
}

/* ---------- split layout ---------- */

.auth-container {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 47%) !important;
    gap: 0 !important;
    max-width: none !important;
    min-height: 100vh !important;
    margin: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
    animation: none !important;
}

/* left: brand panel over a photograph */

.auth-left {
    position: relative;
    isolation: isolate;
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;
    gap: 46px;
    min-height: 100vh;
    padding: 54px 56px !important;
    overflow: hidden !important;
    background: var(--auth-forest) !important;
    color: #fff;
}

.auth-left::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("../images/new/bannermain.jpg");
    background-size: cover;
    background-position: center;
}

.auth-left::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(150deg, rgba(13, 32, 26, .8) 0%, rgba(13, 32, 26, .58) 48%, rgba(1, 128, 108, .4) 100%);
}

.auth-register-page .auth-left::before,
.auth-provider-page .auth-left::before {
    background-image: url("../images/new/hiking.jpg");
}

.auth-forgot-page .auth-left::before {
    background-image: url("../images/new/list3.jpg");
}

.auth-left img {
    height: 40px !important;
    width: auto;
    margin-bottom: 0 !important;
    filter: brightness(0) invert(1);
}

.auth-left h1 {
    max-width: 15ch;
    margin: 22px 0 16px !important;
    color: #fff !important;
    font-size: clamp(34px, 3.6vw, 52px) !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
}

.auth-left p {
    max-width: 46ch;
    color: rgba(255, 255, 255, .78) !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
}

/* feature list on the brand panel */

.auth-left .space-y-6 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px !important;
    max-width: 460px;
    margin-top: 0;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-height: 0;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(6px);
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .3);
    transform: translateY(-2px);
}

.feature-icon-box {
    flex: none;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .12);
}

.feature-icon-box .iconify {
    font-size: 22px !important;
    color: var(--auth-amber) !important;
}

.feature-item h3 {
    margin: 0 0 3px;
    color: #fff !important;
    font-size: 15.5px !important;
    font-weight: 700;
    line-height: 1.3;
}

.feature-item p {
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, .7) !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
}

.auth-left .text-sm {
    margin-top: 0 !important;
    color: rgba(255, 255, 255, .55) !important;
    font-size: 13px !important;
}

/* the logo + headline block */

.auth-left > div:first-child .mb-12 {
    margin-bottom: 0 !important;
}

/* right: the form column */

.auth-right {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 48px 40px !important;
    background: #fff !important;
    overflow-y: auto;
}

.auth-right > div {
    width: 100%;
    max-width: 460px !important;
}

.auth-register-page .auth-right > div,
.auth-provider-page .auth-right > div {
    max-width: 560px !important;
}

/* the white card the form sits in — flattened, since the column is already white */

.auth-right .bg-white.rounded-3xl,
.auth-right .auth-card {
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.auth-form-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 34px;
}

.auth-form-brand img {
    height: 34px;
    width: auto;
}

.auth-form-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--auth-mint);
    color: var(--auth-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.auth-right h2 {
    margin: 0 0 8px !important;
    color: var(--auth-ink) !important;
    font-size: clamp(30px, 3vw, 38px) !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em;
    text-transform: none !important;
}

.auth-right h2 + p,
.auth-right .mb-8 > p {
    margin: 0 !important;
    color: var(--auth-body) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
}

/* the mobile-only brand block, hidden on desktop where the left panel shows it */

@media (min-width: 1025px) {
    .auth-form-brand img {
        display: none;
    }

    .auth-form-brand {
        justify-content: flex-end;
    }
}

/* links + helper rows inside the form column */

.auth-right a:not(.form-submit-btn):not(.form-secondary-btn) {
    color: var(--auth-green);
    font-weight: 600;
    transition: color .2s ease;
}

.auth-right a:not(.form-submit-btn):not(.form-secondary-btn):hover {
    color: var(--auth-teal);
}

.auth-right .text-green-zomp {
    color: var(--auth-green) !important;
}

/* divider ("or continue with") */

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 26px 0;
    color: var(--auth-body);
    font-size: 13px;
    font-weight: 600;
}

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

/* trust strip under the form */

.auth-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--auth-line);
}

.auth-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--auth-body);
    font-size: 13px;
    font-weight: 600;
}

.auth-trust .iconify {
    font-size: 17px;
    color: var(--auth-teal);
}

/* back-to-site link */

.auth-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 26px;
    color: var(--auth-body) !important;
    font-size: 14px;
    font-weight: 600;
}

.auth-back:hover {
    color: var(--auth-green) !important;
}

/* ==========================================================================
   Provider register — a full-width marketing page, not a split screen.

   Its markup relies on Tailwind utilities that are absent from the compiled
   tailwind.css (from-green-zomp, to-green-dark, bg-white/20, text-white/90),
   so the hero rendered as a transparent band with invisible white text.
   These rules supply that styling directly instead.
   ========================================================================== */

.auth-provider-page {
    background: #fff !important;
}

/* top bar */

.auth-provider-page > header {
    border-bottom: 1px solid var(--auth-line);
    background: #fff;
}

.auth-provider-page > header .container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

/* hero band */

.auth-provider-page > section:first-of-type {
    position: relative;
    isolation: isolate;
    padding: 74px 0 !important;
    background:
        radial-gradient(80% 140% at 12% 0%, rgba(1, 128, 108, .5), transparent 62%),
        var(--auth-forest);
    color: #fff;
}

.auth-provider-page > section:first-of-type .container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

.auth-provider-page > section:first-of-type h2 {
    margin-bottom: 14px !important;
    color: #fff !important;
    font-size: clamp(28px, 3.4vw, 42px) !important;
    font-weight: 700;
    line-height: 1.12;
}

.auth-provider-page > section:first-of-type > .container > div > p {
    max-width: 62ch;
    margin: 0 auto 40px !important;
    color: rgba(255, 255, 255, .78) !important;
    font-size: 17px !important;
    line-height: 1.65;
}

.auth-provider-page > section:first-of-type .grid > div {
    padding: 26px 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .07);
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.auth-provider-page > section:first-of-type .grid > div:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .28);
    transform: translateY(-4px);
}

.auth-provider-page > section:first-of-type .grid > div > div:first-child {
    width: 54px !important;
    height: 54px !important;
    margin-bottom: 16px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .14) !important;
}

.auth-provider-page > section:first-of-type .grid .iconify {
    color: var(--auth-amber) !important;
    font-size: 26px !important;
}

.auth-provider-page > section:first-of-type .grid h3 {
    margin-bottom: 6px !important;
    color: #fff !important;
    font-size: 18px !important;
}

.auth-provider-page > section:first-of-type .grid p {
    color: rgba(255, 255, 255, .72) !important;
    font-size: 14px !important;
    line-height: 1.55;
}

/* form section */

.auth-provider-page > section:nth-of-type(2) {
    padding: 64px 0 !important;
    margin-bottom: 0 !important;
    background: #f7faf9;
}

.auth-provider-page > section:nth-of-type(2) .container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

.auth-provider-page .auth-card,
.auth-provider-page > section:nth-of-type(2) .bg-white.rounded-3xl {
    max-width: 780px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 48px) !important;
    border: 1px solid var(--auth-line);
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 30px 70px -50px rgba(18, 38, 30, .5) !important;
}

.auth-provider-page .auth-form-brand {
    justify-content: center;
}

.auth-provider-page h1 {
    color: var(--auth-ink) !important;
    font-size: clamp(28px, 3vw, 38px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
}

/* provider agreement panel */

.auth-provider-page .bg-green-light {
    padding: 24px !important;
    border: 1px solid rgba(45, 95, 63, .18) !important;
    border-radius: 16px !important;
    background: var(--auth-mint) !important;
}

.auth-provider-page .bg-green-light h3 {
    color: var(--auth-ink) !important;
    font-size: 17px !important;
}

/* help card + benefits section */

.auth-provider-page .bg-white-grey {
    max-width: 780px;
    margin: 28px auto 0 !important;
    padding: 26px !important;
    border: 1px solid var(--auth-line) !important;
    border-radius: 20px !important;
    background: #fff !important;
}

.auth-provider-secondary {
    padding: 74px 0;
    margin-bottom: 0 !important;
    background: #fff;
}

.auth-provider-secondary .container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- password strength meter ---------- */

.auth-strength {
    margin-top: 10px;
}

.auth-strength-track {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--auth-line);
}

#passwordStrengthBar {
    height: 100% !important;
    border-radius: 999px;
    transition: width .3s ease, background-color .3s ease;
}

#passwordStrengthText {
    display: block;
    margin-top: 7px;
    font-size: 12.5px;
    font-weight: 600;
}

/* ---------- notification toast ---------- */

#notificationDialog {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    left: auto;
    z-index: 10050 !important;
    width: min(420px, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
}

#notificationContent {
    padding: 18px 20px !important;
    border: 1px solid var(--auth-line) !important;
    border-left-width: 4px !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 24px 50px -24px rgba(18, 38, 30, .45) !important;
}

#notificationContent h3 {
    font-size: 16px !important;
    color: var(--auth-ink);
}

#notificationContent p {
    font-size: 14px !important;
    line-height: 1.55;
}

@keyframes eco-auth-slide-in {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
}

.animate-slide-in-right {
    animation: eco-auth-slide-in .28s ease both !important;
}

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: minmax(0, 1fr) !important;
        min-height: 0 !important;
    }

    .auth-left {
        min-height: 0;
        padding: 40px 28px !important;
        gap: 32px;
    }

    .auth-left h1 {
        font-size: clamp(30px, 6vw, 40px) !important;
    }

    .auth-left .space-y-6 {
        display: none;
    }

    .auth-left .text-sm {
        display: none;
    }

    .auth-right {
        min-height: 0;
        padding: 44px 28px 64px !important;
    }
}

@media (max-width: 560px) {
    .auth-left {
        padding: 30px 20px !important;
    }

    .auth-right {
        padding: 34px 20px 52px !important;
    }

    .auth-form-brand {
        margin-bottom: 26px;
    }

    #notificationDialog {
        top: 12px !important;
        right: 12px !important;
        left: 12px !important;
        width: auto;
        max-width: none;
    }
}

/* ==========================================================================
   Login success dialog — a modal confirmation over an overlay, shown before
   the redirect so the sign-in visibly completes rather than flashing past.
   ========================================================================== */

.eco-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(11, 26, 21, .58);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity .22s ease;
}

/*
 * The [hidden] attribute is what actually removes the dialog; the class only
 * fades it in. Author `display: grid` above would otherwise beat the UA
 * stylesheet's [hidden] rule, and using `visibility` instead would make the
 * button unfocusable for the length of the transition.
 */
.eco-auth-modal[hidden] {
    display: none;
}

.eco-auth-modal.is-open {
    opacity: 1;
}

.eco-auth-modal-card {
    width: min(100%, 430px);
    padding: 40px 34px 32px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 40px 90px -40px rgba(11, 26, 21, .6);
    text-align: center;
    transform: translateY(14px) scale(.97);
    transition: transform .28s cubic-bezier(.2, .8, .3, 1);
}

.eco-auth-modal.is-open .eco-auth-modal-card {
    transform: none;
}

/* the animated tick */

.eco-auth-modal-check {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--auth-mint, #e6f7f4);
}

.eco-auth-modal-check svg {
    width: 40px;
    height: 40px;
}

.eco-auth-modal-check circle {
    fill: none;
    stroke: var(--auth-green, #2d5f3f);
    stroke-width: 2.4;
    stroke-dasharray: 88;
    stroke-dashoffset: 88;
}

.eco-auth-modal-check path {
    fill: none;
    stroke: var(--auth-green, #2d5f3f);
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 36;
    stroke-dashoffset: 36;
}

.eco-auth-modal.is-open .eco-auth-modal-check circle {
    animation: eco-auth-draw-ring .5s ease forwards;
}

.eco-auth-modal.is-open .eco-auth-modal-check path {
    animation: eco-auth-draw-tick .32s ease .38s forwards;
}

@keyframes eco-auth-draw-ring {
    to { stroke-dashoffset: 0; }
}

@keyframes eco-auth-draw-tick {
    to { stroke-dashoffset: 0; }
}

.eco-auth-modal-card h2 {
    margin: 0 0 8px !important;
    color: var(--auth-ink, #121212) !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.eco-auth-modal-card p {
    margin: 0 auto !important;
    max-width: 34ch;
    color: var(--auth-body, #4f5e71) !important;
    font-size: 15.5px !important;
    line-height: 1.6 !important;
}

/* the redirect progress bar */

.eco-auth-modal-progress {
    height: 4px;
    margin: 26px 0 22px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--auth-line, #e8edf1);
}

.eco-auth-modal-progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: var(--auth-green, #2d5f3f);
}

.eco-auth-modal.is-open .eco-auth-modal-progress span {
    animation: eco-auth-progress var(--eco-auth-delay, 1800ms) linear forwards;
}

@keyframes eco-auth-progress {
    from { width: 0; }
    to   { width: 100%; }
}

.eco-auth-modal-card .form-submit-btn {
    width: 100%;
}

.eco-auth-modal-hint {
    margin-top: 14px !important;
    font-size: 13px !important;
    color: var(--auth-muted, #7d8b98) !important;
}

@media (prefers-reduced-motion: reduce) {
    .eco-auth-modal,
    .eco-auth-modal-card {
        transition: none;
    }

    .eco-auth-modal.is-open .eco-auth-modal-check circle,
    .eco-auth-modal.is-open .eco-auth-modal-check path {
        animation: none;
        stroke-dashoffset: 0;
    }

    .eco-auth-modal.is-open .eco-auth-modal-progress span {
        animation: none;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .eco-auth-modal-card {
        padding: 32px 24px 26px;
    }

    .eco-auth-modal-card h2 {
        font-size: 23px !important;
    }
}

/* ==========================================================================
   2026 auth refresh — cleaner login surfaces.
   ========================================================================== */

.auth-page {
    background:
        linear-gradient(180deg, rgba(247, 250, 249, .96), rgba(247, 250, 249, 1)),
        radial-gradient(80% 70% at 0% 0%, rgba(230, 247, 244, .8), transparent 62%) !important;
}

.auth-container {
    grid-template-columns: minmax(0, 52%) minmax(430px, 48%) !important;
}

.auth-left {
    padding: clamp(34px, 5vw, 64px) !important;
}

.auth-left::after {
    background:
        linear-gradient(140deg, rgba(10, 25, 20, .84) 0%, rgba(13, 48, 39, .68) 48%, rgba(1, 128, 108, .34) 100%) !important;
}

.auth-left h1 {
    max-width: 16ch;
    margin-top: 26px !important;
    font-size: clamp(36px, 4vw, 58px) !important;
    letter-spacing: 0 !important;
}

.auth-left p {
    max-width: 42ch;
    font-size: 16px !important;
}

.feature-item {
    max-width: 470px;
    padding: 14px 16px;
    border-radius: 12px;
}

.feature-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.auth-right {
    align-items: center;
    padding: clamp(28px, 5vw, 64px) !important;
    background:
        linear-gradient(180deg, #ffffff, #fbfdfc) !important;
}

.auth-right > div {
    max-width: 430px !important;
}

.auth-register-page .auth-right > div {
    max-width: 540px !important;
}

.auth-form-brand {
    margin-bottom: 28px;
}

@media (min-width: 1025px) {
    .auth-form-brand img {
        display: block;
        opacity: 0;
        pointer-events: none;
    }

    .auth-form-brand {
        justify-content: space-between;
    }
}

.auth-form-chip {
    border: 1px solid rgba(45, 95, 63, .14);
    background: #f2faf7;
    letter-spacing: 0;
    text-transform: none;
}

.auth-right h2 {
    font-size: clamp(30px, 3vw, 42px) !important;
}

.auth-login-page #loginForm,
.auth-forgot-page form {
    display: grid;
    gap: 18px;
}

.auth-login-page #loginForm.space-y-5 > :not([hidden]) ~ :not([hidden]),
.auth-forgot-page form.space-y-6 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0 !important;
}

.auth-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 2px;
}

.auth-secure-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--auth-body);
    font-size: 13px;
    font-weight: 650;
}

.auth-secure-note .iconify {
    color: var(--auth-teal);
    font-size: 17px;
}

.form-input,
.form-select,
.form-textarea {
    min-height: 50px;
    border-radius: 10px;
}

.form-submit-btn {
    min-height: 52px;
    border-radius: 10px !important;
    box-shadow: none !important;
}

.auth-login-page .form-submit-btn,
.auth-forgot-page .form-submit-btn {
    margin-top: 2px;
}

.auth-right .border-t {
    border-color: var(--auth-line) !important;
}

.auth-right .mt-6.pt-6,
.auth-right .mt-8.pt-6 {
    margin-top: 24px !important;
    padding-top: 20px !important;
}

/* Forgot password gets the same clean auth treatment without a split panel. */
.auth-forgot-page {
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(247, 250, 249, .94), rgba(247, 250, 249, 1)),
        url("../images/new/list3.jpg") center/cover fixed !important;
}

.auth-page.auth-forgot-page .min-h-screen {
    display: grid;
    align-content: center;
    min-height: 100vh !important;
    padding: 38px 18px !important;
}

.auth-page.auth-forgot-page .auth-card {
    width: min(100%, 460px);
    padding: 34px !important;
    border: 1px solid var(--auth-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 70px -48px rgba(18, 38, 30, .7);
}

.auth-forgot-page .auth-form-brand {
    justify-content: center;
}

.auth-forgot-page .auth-form-brand img {
    height: 36px;
}

.auth-forgot-page form .p-5,
.auth-forgot-page #resetBtn.p-5 {
    padding: 0 !important;
}

.auth-forgot-page .max-w-md.mx-auto.mt-10 {
    margin-top: 22px !important;
    margin-bottom: 0 !important;
}

.auth-forgot-page .max-w-md.mx-auto.mt-10 p,
.auth-forgot-page .max-w-md.mx-auto.mt-10 a {
    color: var(--auth-body) !important;
}

.auth-forgot-page .max-w-md.mx-auto.mt-10 a {
    color: var(--auth-green) !important;
}

@media (max-width: 1024px) {
    .auth-container {
        display: block !important;
        min-height: 100vh !important;
        background: #fff !important;
    }

    .auth-left {
        display: none !important;
    }

    .auth-right {
        min-height: 100vh;
        padding: 32px 22px 44px !important;
    }

    .auth-right > div,
    .auth-register-page .auth-right > div {
        max-width: 540px !important;
    }
}

@media (max-width: 560px) {
    .auth-form-brand {
        align-items: flex-start;
        margin-bottom: 24px;
    }

    .auth-form-chip {
        padding: 6px 10px;
        font-size: 11.5px;
    }

    .auth-form-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .auth-right h2 {
        font-size: 30px !important;
    }

    .auth-page.auth-forgot-page .auth-card {
        padding: 28px 22px !important;
    }
}
