/* ============================================================
   auth.css — Login & Signup pages
   Layout: % for widths/horizontal spacing, vh/vw for screen-relative.
   Fonts & heights: px (root font-size varies across browsers/frameworks).
   ============================================================ */

/* ── RESET ── */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Source Sans Pro', sans-serif; }

body, html { min-height: 100%; }

/* ── SHARED: animated gradient ── */
@keyframes authGradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* ============================================================
   LOGIN PAGE  — all sizes fixed px, no clamp / vw / vh
   ============================================================ */

.login-wrapper {
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(-45deg, #c8f0f5, #d4f5e9, #b8e8f7, #e0faf0, #c5d8f5, #d0f0e4);
    background-size: 400% 400%;
    animation: authGradientShift 12s ease infinite;
    position: relative;
}

.login-wrapper::before,
.login-wrapper::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    background: rgba(31, 95, 107, 0.10);
    pointer-events: none;
    z-index: 0;
}
.login-wrapper::before { width: 340px; height: 340px; top: 50%; left: -90px; transform: translateY(-50%); }
.login-wrapper::after  { width: 300px; height: 300px; top: 50%; right: -70px; transform: translateY(-50%); }

/* ── Nav ── */
.login-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}
.auth-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}
.auth-logo img {
    height: clamp(46px, 3.8vw, 42px);
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(31,95,107,0.18));
}
.auth-logo-caption {
    margin-top: 0;
    margin-left: 44px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #17294d;
    opacity: 0.9;
}
.login-help { font-size: 13px; color: #555; font-weight: 400; margin-left: auto; padding-top: 20px; }
.login-help a { color: #1f5f6b; font-weight: 500; text-decoration: none; }
.login-help a:hover { text-decoration: underline; }

/* ── Main ── */
.login-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    position: relative;
    z-index: 5;
}

/* ── Card ── */
.login-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 40px 20px;
    width: clamp(430px, 34vw, 520px);
    max-width: 90%;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
}

/* ── Card header ── */
.login-welcome {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}
.login-welcome-line { height: 1.5px; width: 28px; background: #1f5f6b; display: inline-block; }
.login-welcome-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #1f5f6b;
    text-transform: uppercase;
}
.login-heading {
    font-size: 26px;
    font-weight: 700;
    color: #0f2d32;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 8px;
}
.login-heading em { font-style: italic; color: #1f5f6b; }
.login-subtext {
    font-size: 13px;
    color: #667085;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ── Fields ── */
.login-field { margin-bottom: 12px; }
.login-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #344054;
    margin-bottom: 5px;
}
.login-input-wrap { position: relative; display: flex; align-items: center; }
.login-input-icon-left {
    position: absolute;
    left: 14px;
    color: #b0b8c4;
    font-size: 14px;
    pointer-events: none;
    z-index: 2;
}
.login-input-icon-right {
    position: absolute;
    right: 12px;
    color: #b0b8c4;
    font-size: 14px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    line-height: 1;
    z-index: 2;
    transition: color 0.2s;
}
.login-input-icon-right:hover { color: #555; }
.login-input {
    width: 100%;
    height: 44px;
    border: 1.5px solid #d0d5dd;
    border-radius: 9px;
    padding: 0 14px 0 40px;
    font-size: 14px;
    color: #101828;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
}
.login-input:focus {
    border-color: #1f5f6b;
    box-shadow: 0 0 0 3px rgba(31, 95, 107, 0.12);
}
.login-input.has-right-icon { padding-right: 40px; }
.login-input::placeholder { color: #98a2b3; }

.help-block { display: none; }
.has-error .login-input { border-color: #e74c3c; }

/* ── Forgot password ── */
.login-forgot-row {
    text-align: right;
    margin-top: -6px;
    margin-bottom: 18px;
}
.login-forgot-row a { font-size: 12px; font-weight: 500; color: #1f5f6b; text-decoration: none; }
.login-forgot-row a:hover { text-decoration: underline; }

/* ── Button ── */
.login-btn {
    width: 100%;
    height: 46px;
    background: #1f5f6b;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 12px rgba(31, 95, 107, 0.25);
}
.login-btn:hover { background: #174d57; transform: translateY(-1px); }
.login-btn:active { background: #0f2d32; }

/* ── Store badges ── */
.login-stores-label {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #b8bec8;
    text-transform: uppercase;
    margin: 14px 0 8px;
}
.login-stores { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.login-store-badge {
    padding: 3px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.login-store-badge img {
    height: 36px;
    width: auto;
    display: block;
    filter: grayscale(60%) opacity(0.75);
    transition: filter 0.2s;
}
.login-store-badge:hover img { filter: grayscale(0%) opacity(1); }

/* ── Register link ── */
.login-register {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: #98a2b3;
}
.login-register a { color: #1f5f6b; font-weight: 600; text-decoration: none; }
.login-register a:hover { text-decoration: underline; }

/* ── Alert override ── */
.alert {
    position: static !important;
    margin: 0 0 14px !important;
    border-radius: 10px;
}

/* ── 2FA ── */
.login-twofa-qr { display: flex; justify-content: center; margin: 6px 0 22px; }
.login-twofa-qr img {
    width: 180px;
    height: 180px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    border: 1.5px solid #e4e8ee;
}
.login-backup-codes {
    background: #f0f9fa;
    border: 1.5px solid #b6dde2;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.9;
    color: #344054;
    text-align: center;
}
.login-backup-codes strong { font-family: monospace; letter-spacing: 0.05em; }

/* ── Footer ── */
.login-footer {
    text-align: center;
    padding: 10px 16px;
    font-size: 12px;
    color: #aaa;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}
.login-footer a { color: #aaa; text-decoration: none; margin: 0 8px; }
.login-footer a:hover { color: #555; }

/* mobile only — layout shift, no size changes */
@media (max-width: 480px) {
    .login-card { width: 100%; border-radius: 0; padding: 20px 22px 18px; }
    .login-main { padding: 0; align-items: flex-start; }
    .login-help { display: none; }
    .login-logo-tagline { display: none; }
    .login-nav { padding: 12px 18px; }
}


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

.signup-split-wrapper {
    display: flex;
    margin: 0;
    min-height: 100vh;
    overflow: hidden;
}

/* ── Left panel ── */
.signup-left-panel {
    flex: 1;
    min-width: 20%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(72px, 7.5vw, 110px) clamp(16px, 2vw, 28px) 36px clamp(28px, 4vw, 56px);
    background: linear-gradient(-45deg, #c8f0f5, #d4f5e9, #b8e8f7, #e0faf0, #c5d8f5, #d0f0e4);
    background-size: 400% 400%;
    animation: authGradientShift 10s ease infinite;
}

/* Floating circles — vw so they scale with screen width */
.signup-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.signup-c1 {
    width: 14vw; height: 14vw;
    background: radial-gradient(circle, rgba(31,95,107,0.18), rgba(31,95,107,0.04));
    top: 6%; left: -4vw;
    animation: floatA 14s ease-in-out infinite;
}
.signup-c2 {
    width: 9vw; height: 9vw;
    background: radial-gradient(circle, rgba(16,185,129,0.20), rgba(16,185,129,0.04));
    top: 58%; right: -2vw;
    animation: floatB 10s ease-in-out infinite;
}
.signup-c3 {
    width: 6vw; height: 6vw;
    background: radial-gradient(circle, rgba(31,95,107,0.14), transparent);
    bottom: 22%; left: 18%;
    animation: floatC 16s ease-in-out infinite;
}
.signup-c4 {
    width: 4.5vw; height: 4.5vw;
    background: radial-gradient(circle, rgba(16,185,129,0.22), transparent);
    top: 28%; right: 18%;
    animation: floatD 8s ease-in-out infinite;
}
.signup-c5 {
    width: 16vw; height: 16vw;
    background: radial-gradient(circle, rgba(180,235,245,0.45), transparent);
    bottom: -5vw; right: -4.5vw;
    animation: floatE 20s ease-in-out infinite;
}
.signup-c6 {
    width: 3.5vw; height: 3.5vw;
    background: radial-gradient(circle, rgba(31,95,107,0.25), transparent);
    top: 72%; left: 55%;
    animation: floatA 11s ease-in-out infinite 2s;
}
.signup-c7 {
    width: 7vw; height: 7vw;
    background: radial-gradient(circle, rgba(16,185,129,0.12), transparent);
    top: 4%; right: 8%;
    animation: floatC 13s ease-in-out infinite 3s;
}
.signup-c8 {
    width: 3vw; height: 3vw;
    background: radial-gradient(circle, rgba(31,95,107,0.30), transparent);
    top: 45%; left: 8%;
    animation: floatB 9s ease-in-out infinite 1s;
}

@keyframes floatA {
    0%   { transform: translate(0px, 0px) scale(1); }
    20%  { transform: translate(40px, -55px) scale(1.06); }
    45%  { transform: translate(-15px, -85px) scale(0.94); }
    70%  { transform: translate(55px, -35px) scale(1.09); }
    100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes floatB {
    0%   { transform: translate(0px, 0px) scale(1); }
    33%  { transform: translate(-50px, -65px) scale(1.12); }
    66%  { transform: translate(25px, -45px) scale(0.88); }
    100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes floatC {
    0%   { transform: translate(0px, 0px); }
    15%  { transform: translate(55px, -28px); }
    35%  { transform: translate(38px, 38px); }
    55%  { transform: translate(-18px, 48px); }
    75%  { transform: translate(-48px, 18px); }
    100% { transform: translate(0px, 0px); }
}
@keyframes floatD {
    0%   { transform: translate(0px, 0px) scale(1); opacity: .7; }
    50%  { transform: translate(-42px, 62px) scale(1.25); opacity: 1; }
    100% { transform: translate(0px, 0px) scale(1); opacity: .7; }
}
@keyframes floatE {
    0%   { transform: translate(0px, 0px) scale(1); }
    30%  { transform: translate(-55px, -45px) scale(1.06); }
    65%  { transform: translate(-85px, 22px) scale(0.94); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.signup-left-footer {
    position: relative;
    z-index: 2;
    font-size: 12.5px;
    color: #1f5f6b;
    font-weight: 600;
    opacity: .75;
    letter-spacing: .3px;
    text-align: center;
    padding-top: 16px;
}

.signup-left-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    gap: clamp(16px, 2.5vw, 36px);
}

.signup-text-col {
    flex: 0 0 auto;
    width: clamp(230px, 24vw, 300px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.signup-logo-wrapper {
    position: absolute;
    top: clamp(22px, 3vw, 44px);
    left: clamp(28px, 4vw, 56px);
    z-index: 3;
}

.signup-headline {
    font-size: clamp(22px, 2.5vw, 33px);
    font-weight: 700;
    color: #0f2d32;
    line-height: 1.22;
    letter-spacing: -.5px;
    margin-bottom: 14px;
}

.signup-desc {
    font-size: clamp(12px, 1.1vw, 14.5px);
    color: #2a6b76;
    line-height: 1.70;
    margin-bottom: 28px;
    opacity: .90;
}

.signup-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin-bottom: 24px;
}

.signup-feature-card {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.60);
    border-radius: 14px;
    padding: 13px 12px;
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    box-shadow:
        0 4px 20px rgba(31,95,107,0.07),
        inset 0 1px 0 rgba(255,255,255,0.75),
        inset 0 -1px 0 rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all .25s ease;
}
.signup-feature-card:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-2px);
    box-shadow:
        0 10px 32px rgba(31,95,107,0.13),
        inset 0 1px 0 rgba(255,255,255,0.85);
}

.signup-feature-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1f5f6b, #0f2d32);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 17px;
}

.signup-feature-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #0f2d32;
    line-height: 1.35;
}

.signup-trust {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: #1f5f6b;
    font-weight: 600;
    opacity: .80;
    margin-bottom: 8px;
}
.signup-trust i { font-size: 14.5px; }

.signup-badge-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.signup-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #1a5560;
    font-weight: 600;
    background: rgba(31,95,107,0.09);
    border: 1px solid rgba(31,95,107,0.15);
    border-radius: 20px;
    padding: 4px 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.signup-badge i { font-size: 10.5px; opacity: .80; }

.signup-mockup-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.signup-mockup-img {
    width: 100%;
    max-width: clamp(300px, 42vw, 760px);
    display: block;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 24px 48px rgba(15,45,50,0.28)) drop-shadow(0 6px 16px rgba(15,45,50,0.14));
}

/* ── Right panel ── */
.signup-right-panel {
    width: clamp(42%, 46%, 52%);
    flex-shrink: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.signup-rp-header {
    background: linear-gradient(135deg, #0f2d32 0%, #1a4f58 100%);
    padding: clamp(16px, 2vw, 28px) clamp(20px, 3vw, 40px) clamp(12px, 1.5vw, 22px);
    text-align: center;
    flex-shrink: 0;
}

.signup-rp-tagline {
    font-size: clamp(15px, 1.6vw, 21px);
    font-weight: 700;
    color: #fff;
    letter-spacing: .2px;
    line-height: 1.35;
    margin-bottom: 6px;
}

.signup-rp-sub {
    font-size: clamp(11px, 1.1vw, 14px);
    color: rgba(255,255,255,.72);
    font-weight: 400;
}

/* ── Step bar ── */
.signup-step-bar {
    display: flex;
    background: #0f2d32;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
}

.signup-step-item {
    flex: 1;
    text-align: center;
    padding: 11px 4px;
    font-size: 11px;
    color: rgba(255,255,255,.45);
    border-bottom: 3px solid transparent;
    transition: all .25s;
    cursor: default;
}
.signup-step-item.active { color: #fff; border-bottom-color: #4ade80; font-weight: 600; }
.signup-step-item.done   { color: rgba(255,255,255,.65); border-bottom-color: rgba(74,222,128,.35); }

.signup-step-num {
    display: inline-block;
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 2px solid currentColor;
    line-height: 18px;
    font-size: 11px;
    margin-bottom: 3px;
}

/* ── Form body ── */
.signup-body {
    padding: clamp(20px, 2.5vw, 36px) clamp(18px, 2.8vw, 40px) 28px;
    background: #fff;
    flex: 1;
}

.signup-step         { display: none; }
.signup-step.active  { display: block; }

.signup-section-title {
    font-size: 15px;
    color: #12343b;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e4e7ec;
    display: flex;
    align-items: center;
    gap: 8px;
}
.signup-section-title i { color: #1f5f6b !important; }

.signup-form-group { margin-bottom: 16px; }
.signup-form-group label {
    display: block;
    font-size: 12px;
    color: #344054;
    margin-bottom: 6px;
    font-weight: 600;
}
.signup-form-group label span.req { color: #e74c3c; margin-left: 2px; }
.signup-form-group label small { color: #888; }

.signup-input {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1.5px solid #d0d5dd;
    background: #fff;
    padding: 0 14px;
    font-size: 14px;
    color: #101828;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.signup-input:focus {
    border-color: #1f5f6b;
    box-shadow: 0 0 0 3px rgba(31,95,107,.12);
}
.signup-input::placeholder { color: #98a2b3; }
select.signup-input { padding: 0 14px; cursor: pointer; color: #101828; }

.signup-row-2 { display: flex; gap: 14px; }
.signup-row-2 .signup-form-group { flex: 1; }

/* Plan cards */
.signup-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.signup-plan-card {
    border: 1.5px solid #e4e7ec;
    border-radius: 12px;
    padding: 14px 12px;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    color: #344054;
    background: #fff;
    box-shadow: 0 2px 6px rgba(15,23,42,0.05);
}
.signup-plan-card:hover { border-color: #1f5f6b; background: #f0f9fa; }
.signup-plan-card.selected {
    border-color: #1f5f6b;
    background: #e8f5f7;
    box-shadow: 0 0 0 3px rgba(31,95,107,.1);
}
.signup-plan-card .plan-label { font-size: 13px; font-weight: 600; color: #344054; }
.signup-plan-card .plan-price { font-size: 19px; font-weight: 700; color: #12343b; margin: 4px 0; }
.signup-plan-card .plan-per   { font-size: 10px; color: #98a2b3; }

.signup-free-trial-row {
    margin-top: 12px;
    text-align: left;
    background: #f0f9fa;
    border: 1.5px solid #1f5f6b;
    box-shadow: 0 0 0 3px rgba(31,95,107,.08);
}

/* Price summary */
.signup-price-summary {
    background: #f0f9fa;
    border: 1.5px solid #b6dde2;
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 16px;
    color: #344054;
}
.signup-price-summary table { width: 100%; font-size: 13px; }
.signup-price-summary td    { padding: 3px 0; }
.signup-price-summary td:last-child { text-align: right; }
.signup-price-summary .gst-row td  { color: #667085; font-size: 12px; }
.signup-price-summary .total-row td { border-top: 1px solid #d0d5dd; padding-top: 8px; font-weight: 700; }
.signup-price-summary .total-amount { font-size: 20px; color: #12343b; }
.signup-price-summary .total-note   { font-size: 11px; color: #98a2b3; margin-top: 3px; }

/* Order summary */
.signup-order-summary {
    background: #f8fafc;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

/* Nav buttons */
.signup-btn-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    gap: 10px;
}

.signup-btn {
    height: 44px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 28px;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .2px;
}
.signup-btn-primary {
    background: #1f5f6b;
    color: #fff;
    flex: 1;
    box-shadow: 0 4px 12px rgba(31,95,107,.25);
}
.signup-btn-primary:hover { background: #174d57; box-shadow: 0 6px 16px rgba(31,95,107,.32); transform: translateY(-1px); }

.signup-btn-secondary {
    background: #fff;
    color: #344054;
    border: 1.5px solid #d0d5dd;
}
.signup-btn-secondary:hover { background: #f4f6f9; border-color: #b0b7c3; }

.signup-btn-success {
    background: #1f5f6b;
    color: #fff;
    flex: 1;
    box-shadow: 0 4px 12px rgba(31,95,107,.30);
}
.signup-btn-success:hover { background: #174d57; transform: translateY(-1px); }
.signup-btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* Field error */
.signup-field-error {
    color: #e74c3c;
    font-size: 11px;
    margin-top: 5px;
    padding-left: 4px;
    display: none;
}

/* Alert */
.signup-alert {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    margin-bottom: 16px;
    display: none;
}
.signup-alert.error   { background: #fef3f2; border: 1px solid #fecdca; color: #b42318; }
.signup-alert.success { background: #ecfdf3; border: 1px solid #a9efcb; color: #027a48; }

/* Success step */
.signup-success-box {
    text-align: center;
    padding: 20px 0 10px;
    color: #344054;
}
.signup-success-box .signup-icon-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: #ecfdf3;
    border: 3px solid #10b981;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    color: #10b981;
}
.signup-success-box h3 { font-size: 20px; color: #12343b; font-weight: 700; margin-bottom: 10px; }
.signup-success-box p  { font-size: 13px; color: #667085; line-height: 1.7; }

.signup-login-link {
    display: inline-block;
    margin-top: 20px;
    background: #1f5f6b;
    color: #fff;
    border-radius: 8px;
    padding: 11px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 12px rgba(31,95,107,.35);
}
.signup-login-link:hover { background: #174d57; color: #fff; text-decoration: none; transform: translateY(-1px); }

.signup-back-to-login {
    text-align: center;
    margin-top: 22px;
    font-size: 12px;
    color: #98a2b3;
}
.signup-back-to-login a { color: #1f5f6b; text-decoration: none; font-weight: 600; }
.signup-back-to-login a:hover { text-decoration: underline; }

/* Info box */
.signup-info-box {
    background: #f0f9fa;
    border: 1px solid #b6dde2;
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 4px;
}
.signup-info-box p { color: #344054 !important; }
.signup-info-box i { color: #1f5f6b !important; }

/* User count */
.signup-user-count-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.signup-user-count-wrapper input[type=range] {
    flex: 1;
    accent-color: #1f5f6b;
}
.signup-user-count-badge {
    background: #1f5f6b;
    color: #fff;
    border-radius: 8px;
    padding: 4px 14px;
    font-size: 15px;
    font-weight: 700;
    min-width: 52px;
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .signup-split-wrapper  { flex-direction: column; }
    .signup-left-panel     { min-height: 220px; flex: none; padding: 36px 28px 32px; }
    .signup-right-panel    { width: 100%; }
    .signup-body           { padding: 24px 20px 20px; }
    .signup-rp-header      { padding: 20px 20px 16px; }
}
@media (max-width: 480px) {
    .signup-plan-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .signup-row-2     { flex-direction: column; gap: 0; }
}

.state-dropdown-wrapper { position: relative; }
.state-display-btn {
    width: 100%; height: 42px; padding: 0 36px 0 12px;
    border: 1px solid #ccc; border-radius: 6px;
    background: #fff; font-size: 14px; color: #333;
    text-align: left; cursor: pointer; display: flex;
    align-items: center; justify-content: space-between;
    box-sizing: border-box;
}
.state-display-btn .state-arrow {
    font-size: 10px; color: #888; pointer-events: none;
}
.state-display-btn.placeholder-shown { color: #999; }
.state-dropdown-panel {
    display: none; position: absolute; top: calc(100% + 4px);
    left: 0; right: 0; z-index: 9999;
    border: 1px solid #ccc; border-radius: 6px;
    background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.state-dropdown-panel.open { display: block; }
.state-search-input {
    width: 100%; padding: 8px 12px; border: none;
    border-bottom: 1px solid #eee; border-radius: 6px 6px 0 0;
    font-size: 13px; outline: none; box-sizing: border-box;
}
.state-options-list {
    max-height: 220px; overflow-y: auto; list-style: none;
    margin: 0; padding: 4px 0;
}
.state-options-list li {
    padding: 8px 14px; font-size: 13px; cursor: pointer; color: #333;
}
.state-options-list li:hover,
.state-options-list li.active { background: #1a6fa8; color: #fff; }
.state-options-list li.no-results { color: #999; cursor: default; }
.state-options-list li.no-results:hover { background: none; }
