/* =========================================================
   SAIRAM HERBALS — PREMIUM AUTHENTICATION
   Login + Register
   Fully responsive: mobile / tablet / desktop
   ========================================================= */

:root {
    --auth-primary: #16a34a;
    --auth-primary-dark: #15803d;
    --auth-primary-deep: #166534;
    --auth-secondary: #22c55e;

    --auth-bg: #f5faf6;
    --auth-card: rgba(255, 255, 255, 0.96);
    --auth-white: #ffffff;

    --auth-text: #122019;
    --auth-muted: #64746b;
    --auth-soft: #8a9890;

    --auth-border: #dfe8e2;
    --auth-border-focus: #86c99b;

    --auth-danger: #dc2626;
    --auth-warning: #d97706;

    --auth-shadow: 0 24px 70px rgba(22, 101, 52, 0.12);
    --auth-shadow-soft: 0 12px 35px rgba(15, 23, 42, 0.08);

    --auth-radius-xl: 32px;
    --auth-radius-lg: 20px;
    --auth-radius-md: 14px;
    --auth-radius-sm: 10px;
}

/* =========================================================
   RESET
   ========================================================= */

.premium-auth,
.premium-auth *,
.premium-auth *::before,
.premium-auth *::after {
    box-sizing: border-box;
}

.premium-auth a {
    text-decoration: none;
}

.premium-auth button,
.premium-auth input {
    font: inherit;
}

.premium-auth button {
    border: 0;
}

/* =========================================================
   PAGE
   ========================================================= */

.premium-auth {
    min-height: 100svh;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 8%,
            rgba(187, 247, 208, 0.55),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 90%,
            rgba(220, 252, 231, 0.75),
            transparent 30%
        ),
        var(--auth-bg);

    color: var(--auth-text);
}

/* =========================================================
   BACKGROUND ORBS
   ========================================================= */

.auth-bg-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(2px);
    opacity: 0.65;
}

.orb-one {
    width: 280px;
    height: 280px;
    top: -140px;
    right: 35%;
    background: rgba(134, 239, 172, 0.18);
}

.orb-two {
    width: 220px;
    height: 220px;
    bottom: -110px;
    left: 40%;
    background: rgba(74, 222, 128, 0.14);
}

.orb-three {
    width: 140px;
    height: 140px;
    top: 20%;
    right: 4%;
    background: rgba(187, 247, 208, 0.35);
}

/* =========================================================
   LEFT BRAND PANEL
   ========================================================= */

.auth-brand-panel {
    min-height: 100svh;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #14532d 0%,
            #166534 48%,
            #15803d 100%
        );
}

.auth-brand-panel::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255,255,255,0.12),
            transparent 26%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(187,247,208,0.16),
            transparent 30%
        );
}

.brand-panel-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            rgba(20, 83, 45, 0.94),
            rgba(22, 101, 52, 0.84)
        );
}

.auth-brand-panel::after {
    content: "";
    position: absolute;

    width: 430px;
    height: 430px;

    right: -180px;
    bottom: -190px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 60px rgba(255,255,255,0.025),
        0 0 0 120px rgba(255,255,255,0.018);
}

/* =========================================================
   BRAND CONTENT
   ========================================================= */

.brand-panel-content {
    position: relative;
    z-index: 2;

    min-height: 100svh;

    max-width: 650px;
    margin: 0 auto;

    padding:
        clamp(40px, 6vw, 86px)
        clamp(34px, 6vw, 86px);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =========================================================
   BRAND
   ========================================================= */

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: fit-content;

    color: #fff;

    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.4px;

    margin-bottom: 48px;
}

.auth-brand strong {
    font-weight: 800;
}

.brand-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12);
}

.brand-icon i {
    font-size: 24px;
}

/* =========================================================
   BRAND TAG
   ========================================================= */

.brand-tag {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 13px;

    border-radius: 999px;

    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);

    color: #dcfce7;

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 22px;
}

.brand-tag i {
    font-size: 15px;
}

/* =========================================================
   BRAND HEADING
   ========================================================= */

.brand-panel-content h1 {
    max-width: 570px;

    margin: 0;

    color: #fff;

    font-size: clamp(38px, 4.5vw, 66px);
    line-height: 1.03;
    letter-spacing: -2.8px;

    font-weight: 800;
}

.brand-panel-content h1 span {
    display: block;
    margin-top: 8px;

    color: #bbf7d0;
}

/* =========================================================
   BRAND DESCRIPTION
   ========================================================= */

.brand-description {
    max-width: 520px;

    margin: 24px 0 34px;

    color: rgba(255,255,255,0.76);

    font-size: 15px;
    line-height: 1.75;
}

/* =========================================================
   BENEFITS
   ========================================================= */

.brand-benefits {
    display: grid;
    gap: 13px;

    max-width: 470px;
}

.brand-benefit {
    display: flex;
    align-items: center;
    gap: 13px;
}

.benefit-icon {
    flex: 0 0 auto;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);

    color: #bbf7d0;
}

.benefit-icon i {
    font-size: 19px;
}

.brand-benefit div {
    display: grid;
    gap: 2px;
}

.brand-benefit strong {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.brand-benefit small {
    color: rgba(255,255,255,0.58);
    font-size: 11px;
}

/* =========================================================
   TRUST
   ========================================================= */

.brand-trust {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 42px;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars span {
    width: 32px;
    height: 32px;

    margin-left: -7px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.14);
    border: 2px solid #166534;

    color: #dcfce7;

    font-size: 13px;
}

.trust-avatars span:first-child {
    margin-left: 0;
}

.trust-avatars .trust-more {
    background: #bbf7d0;
    color: #166534;
    font-weight: 800;
}

.trust-text {
    display: grid;
    gap: 1px;
}

.trust-text strong {
    color: #fff;
    font-size: 12px;
}

.trust-text small {
    color: rgba(255,255,255,0.56);
    font-size: 10px;
}

/* =========================================================
   RIGHT FORM AREA
   ========================================================= */

.auth-form-area {
    position: relative;
    z-index: 3;

    min-height: 100svh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        70px
        clamp(30px, 6vw, 90px);
}

/* =========================================================
   BACK HOME
   ========================================================= */

.auth-back-home {
    position: absolute;

    top: 30px;
    right: 45px;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--auth-muted);

    font-size: 12px;
    font-weight: 600;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.auth-back-home:hover {
    color: var(--auth-primary-dark);
    transform: translateX(-2px);
}

.auth-back-home i {
    font-size: 17px;
}

/* =========================================================
   AUTH CARD
   ========================================================= */

.auth-card {
    width: 100%;
    max-width: 500px;

    padding: clamp(30px, 4vw, 46px);

    background: var(--auth-card);

    border: 1px solid rgba(255,255,255,0.92);

    border-radius: var(--auth-radius-xl);

    box-shadow: var(--auth-shadow);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* =========================================================
   MOBILE BRAND
   ========================================================= */

.mobile-brand {
    display: none;

    align-items: center;
    justify-content: center;
    gap: 9px;

    color: var(--auth-text);

    font-size: 19px;
    font-weight: 600;

    margin-bottom: 25px;
}

.mobile-brand strong {
    font-weight: 800;
}

.mobile-brand-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: var(--auth-primary-dark);
    background: #dcfce7;
}

.mobile-brand-icon i {
    font-size: 20px;
}

/* =========================================================
   CARD HEADER
   ========================================================= */

.auth-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-welcome-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin: 0 auto 15px;

    border-radius: 16px;

    color: var(--auth-primary-dark);
    background: #ecfdf3;

    border: 1px solid #d1fae5;
}

.auth-welcome-icon i {
    font-size: 24px;
}

.auth-card-header h2 {
    margin: 0;

    color: var(--auth-text);

    font-size: clamp(26px, 3vw, 32px);
    line-height: 1.15;

    letter-spacing: -1px;

    font-weight: 800;
}

.auth-card-header p {
    margin: 9px auto 0;

    max-width: 340px;

    color: var(--auth-muted);

    font-size: 13px;
    line-height: 1.6;
}

/* =========================================================
   FORM
   ========================================================= */

.auth-input-group {
    margin-bottom: 20px;
}

.auth-input-group label {
    display: block;

    margin-bottom: 8px;

    color: #26362d;

    font-size: 12px;
    font-weight: 700;
}

.auth-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.auth-label-row a {
    color: var(--auth-primary-dark);

    font-size: 11px;
    font-weight: 700;
}

.auth-label-row a:hover {
    text-decoration: underline;
}

/* =========================================================
   INPUT BOX
   ========================================================= */

.auth-input-box {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 52px;

    border: 1px solid var(--auth-border);

    border-radius: var(--auth-radius-md);

    background: #fff;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.auth-input-box:focus-within {
    border-color: var(--auth-border-focus);

    box-shadow:
        0 0 0 4px rgba(34,197,94,0.10);
}

.auth-input-icon {
    width: 48px;

    display: grid;
    place-items: center;

    color: #809087;

    pointer-events: none;
}

.auth-input-icon i {
    font-size: 19px;
}

.auth-input-box input {
    width: 100%;
    min-width: 0;

    height: 50px;

    padding:
        0 14px 0 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--auth-text);

    font-size: 13px;
    font-weight: 500;
}

.auth-input-box input::placeholder {
    color: #a2aea7;
}

.auth-input-box input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    -webkit-text-fill-color: var(--auth-text);
}

/* =========================================================
   PASSWORD TOGGLE
   ========================================================= */

.toggle-password {
    flex: 0 0 auto;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    margin-right: 4px;

    border-radius: 10px;

    background: transparent;

    color: #87948c;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.toggle-password:hover {
    background: #f0fdf4;
    color: var(--auth-primary-dark);
}

.toggle-password i {
    font-size: 19px;
}

/* =========================================================
   CAPS LOCK
   ========================================================= */

.caps-lock-warning {
    display: none;

    align-items: center;
    gap: 5px;

    margin-top: 7px;

    color: var(--auth-warning);

    font-size: 10px;
    font-weight: 600;
}

.caps-lock-warning i {
    font-size: 13px;
}

/* =========================================================
   ERRORS
   ========================================================= */

.error-text {
    display: block;

    min-height: 0;

    margin-top: 5px;

    color: var(--auth-danger);

    font-size: 10px;
    line-height: 1.4;
}

.auth-input-box.input-error {
    border-color: #fca5a5;

    box-shadow:
        0 0 0 4px rgba(239,68,68,0.08);
}

.auth-input-box.input-success {
    border-color: #86efac;
}

/* =========================================================
   OPTIONS
   ========================================================= */

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin:
        -2px
        0
        22px;
}

.remember-me {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;

    margin: 0 !important;

    color: var(--auth-muted) !important;

    font-size: 11px !important;
    font-weight: 500 !important;

    cursor: pointer;
}

.remember-me input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-checkbox {
    width: 17px;
    height: 17px;

    display: grid;
    place-items: center;

    border: 1px solid #cbd8cf;
    border-radius: 5px;

    background: #fff;

    color: transparent;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.remember-me input:checked + .custom-checkbox {
    background: var(--auth-primary);
    border-color: var(--auth-primary);

    color: #fff;
}

.custom-checkbox i {
    font-size: 12px;
}

/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.auth-submit-btn {
    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 18px;

    border-radius: var(--auth-radius-md);

    background:
        linear-gradient(
            135deg,
            var(--auth-primary),
            var(--auth-primary-dark)
        );

    color: #fff;

    cursor: pointer;

    box-shadow:
        0 12px 24px rgba(22,163,74,0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.auth-submit-btn:hover {
    transform: translateY(-1px);

    box-shadow:
        0 16px 28px rgba(22,163,74,0.25);
}

.auth-submit-btn:active {
    transform: translateY(0);
}

.auth-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-submit-btn span {
    display: grid;
    place-items: center;
}

.auth-submit-btn span i {
    font-size: 17px;
}

.auth-submit-btn strong {
    font-size: 13px;
    font-weight: 700;
}

.auth-submit-btn > i {
    margin-left: auto;
    font-size: 19px;
}

/* =========================================================
   DIVIDER
   ========================================================= */

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 24px 0 17px;

    color: #9aa69f;

    font-size: 10px;
    font-weight: 600;

    white-space: nowrap;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    height: 1px;
    width: 100%;

    background: #e6ede8;
}

/* =========================================================
   GOOGLE BUTTON
   ========================================================= */

.google-auth-btn {
    width: 100%;
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 16px;

    border: 1px solid var(--auth-border);
    border-radius: var(--auth-radius-md);

    background: #fff;

    color: #27352d;

    font-size: 12px;
    font-weight: 700;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.google-auth-btn:hover {
    border-color: #c8d8ce;
    background: #fbfefc;
    transform: translateY(-1px);
}

.google-auth-btn img {
    width: 18px;
    height: 18px;

    object-fit: contain;
}

/* =========================================================
   SECURITY BOX
   ========================================================= */

.auth-security {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-top: 18px;
    padding: 12px 13px;

    border: 1px solid #dcfce7;
    border-radius: 13px;

    background: #f0fdf4;
}

.security-icon {
    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: #dcfce7;
    color: var(--auth-primary-dark);
}

.security-icon i {
    font-size: 17px;
}

.auth-security div {
    display: grid;
    gap: 2px;
}

.auth-security strong {
    color: #1d3b28;

    font-size: 10px;
    font-weight: 800;
}

.auth-security small {
    color: #668070;

    font-size: 9px;
    line-height: 1.4;
}

/* =========================================================
   SWITCH LOGIN / REGISTER
   ========================================================= */

.auth-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;

    margin-top: 24px;

    color: var(--auth-muted);

    font-size: 11px;
}

.auth-switch a {
    color: var(--auth-primary-dark);

    font-weight: 800;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* =========================================================
   POLICY
   ========================================================= */

.auth-policy {
    margin: 18px auto 0;

    max-width: 390px;

    text-align: center;

    color: #9aa69f;

    font-size: 9px;
    line-height: 1.65;
}

.auth-policy a {
    color: #61736a;
    font-weight: 700;
}

.auth-policy a:hover {
    color: var(--auth-primary-dark);
}

/* =========================================================
   TRUST FOOTER
   ========================================================= */

.auth-trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 18px;
    padding-top: 15px;

    border-top: 1px solid #edf2ee;
}

.auth-trust-footer span {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    color: #8a9890;

    font-size: 9px;
    font-weight: 600;
}

.auth-trust-footer i {
    color: var(--auth-primary);

    font-size: 12px;
}

/* =========================================================
   REGISTER-SPECIFIC SUPPORT
   Existing register markup can reuse these styles.
   ========================================================= */

.auth-card .password-strength,
.auth-card .password-strength-container {
    margin-top: 8px;
}

.auth-card .strength-bar {
    height: 4px;
    overflow: hidden;

    border-radius: 999px;

    background: #edf2ee;
}

.auth-card .strength-text {
    display: block;

    margin-top: 5px;

    color: var(--auth-soft);

    font-size: 9px;
}

/* =========================================================
   CHECKBOX / TERMS SUPPORT
   ========================================================= */

.auth-card .terms-row,
.auth-card .newsletter-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    margin-top: 12px;

    color: var(--auth-muted);

    font-size: 10px;
    line-height: 1.55;
}

.auth-card .terms-row input,
.auth-card .newsletter-row input {
    flex: 0 0 auto;

    width: 16px;
    height: 16px;

    margin-top: 1px;

    accent-color: var(--auth-primary);
}

.auth-card .terms-row a,
.auth-card .newsletter-row a {
    color: var(--auth-primary-dark);
    font-weight: 700;
}

/* =========================================================
   BACKWARD COMPATIBILITY
   Old auth JS / markup selectors
   ========================================================= */

.login-card,
.register-card {
    width: 100%;
}

.input-group,
.form-group {
    width: 100%;
}

.input-box {
    position: relative;
}

.login-btn,
.register-btn {
    cursor: pointer;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .premium-auth {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(430px, 1.1fr);
    }

    .brand-panel-content {
        padding:
            50px
            clamp(30px, 5vw, 60px);
    }

    .brand-panel-content h1 {
        font-size: clamp(38px, 5vw, 54px);
    }

    .auth-form-area {
        padding:
            70px
            40px;
    }

    .auth-card {
        max-width: 480px;
    }

}

/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 900px) {

    .premium-auth {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .auth-brand-panel {
        min-height: auto;
    }

    .brand-panel-content {
        min-height: auto;

        max-width: 800px;

        padding:
            44px
            7vw;
    }

    .auth-brand {
        margin-bottom: 30px;
    }

    .brand-panel-content h1 {
        max-width: 700px;
        font-size: clamp(38px, 7vw, 56px);
    }

    .brand-description {
        max-width: 650px;
    }

    .brand-benefits {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        max-width: 100%;
    }

    .brand-benefit {
        align-items: flex-start;
    }

    .brand-trust {
        margin-top: 28px;
    }

    .auth-form-area {
        min-height: auto;

        padding:
            45px
            24px
            65px;
    }

    .auth-back-home {
        top: 24px;
        right: 25px;
    }

}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .premium-auth {
        display: block;
        min-height: 100svh;
    }

    .auth-brand-panel {
        display: none;
    }

    .auth-form-area {
        min-height: 100svh;

        display: flex;
        align-items: flex-start;

        padding:
            70px
            16px
            30px;
    }

    .auth-back-home {
        top: 18px;
        right: 18px;

        font-size: 11px;
    }

    .mobile-brand {
        display: flex;
    }

    .auth-card {
        max-width: 100%;

        padding:
            28px
            20px;

        border-radius: 24px;

        box-shadow:
            0 18px 50px rgba(22,101,52,0.10);
    }

    .auth-card-header {
        margin-bottom: 25px;
    }

    .auth-welcome-icon {
        width: 48px;
        height: 48px;
    }

    .auth-card-header h2 {
        font-size: 27px;
    }

    .auth-card-header p {
        font-size: 12px;
    }

}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .auth-form-area {
        padding:
            64px
            12px
            20px;
    }

    .auth-back-home span {
        display: none;
    }

    .auth-back-home {
        width: 36px;
        height: 36px;

        display: grid;
        place-items: center;

        top: 15px;
        right: 14px;

        border-radius: 10px;

        background: #fff;
        border: 1px solid var(--auth-border);

        box-shadow: var(--auth-shadow-soft);
    }

    .auth-card {
        padding:
            24px
            16px;

        border-radius: 21px;
    }

    .mobile-brand {
        font-size: 18px;
        margin-bottom: 21px;
    }

    .auth-card-header {
        margin-bottom: 22px;
    }

    .auth-welcome-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .auth-welcome-icon i {
        font-size: 21px;
    }

    .auth-card-header h2 {
        font-size: 25px;
    }

    .auth-card-header p {
        font-size: 11px;
    }

    .auth-input-group {
        margin-bottom: 17px;
    }

    .auth-input-box {
        min-height: 50px;
    }

    .auth-input-box input {
        height: 48px;
        font-size: 12px;
    }

    .auth-input-icon {
        width: 43px;
    }

    .auth-input-icon i {
        font-size: 18px;
    }

    .toggle-password {
        width: 40px;
        height: 40px;
    }

    .auth-submit-btn {
        min-height: 51px;
    }

    .auth-submit-btn strong {
        font-size: 12px;
    }

    .google-auth-btn {
        min-height: 48px;
        font-size: 11px;
    }

    .auth-security {
        padding: 10px;
    }

    .auth-switch {
        font-size: 10px;
    }

}

/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    .auth-form-area {
        padding-left: 8px;
        padding-right: 8px;
    }

    .auth-card {
        padding:
            22px
            13px;

        border-radius: 19px;
    }

    .auth-card-header h2 {
        font-size: 23px;
    }

    .auth-card-header p {
        font-size: 10px;
    }

    .auth-input-group label {
        font-size: 11px;
    }

    .auth-input-box input {
        font-size: 11px;
    }

    .auth-options {
        margin-bottom: 18px;
    }

    .remember-me {
        font-size: 10px !important;
    }

    .auth-trust-footer {
        gap: 8px;
    }

    .auth-trust-footer span {
        font-size: 8px;
    }

}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .premium-auth *,
    .premium-auth *::before,
    .premium-auth *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

}


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

.strength-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

#strengthBar {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: 999px;
    background: #e5e7eb;
    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.strength-text {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #64748b;
}