/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
    /* Brand */
    --blue: #2563eb;
    --blue-mid: #3b82f6;
    --blue-light: #dbeafe;
    --purple: #7c3aed;
    --purple-light: #ede9fe;
    --green: #16a34a;
    --green-mid: #22c55e;
    --green-light: #dcfce7;
    --green-rim: #bbf7d0;

    /* Gradient */
    --grad-btn: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --grad-hero: linear-gradient(160deg, #eff6ff 0%, #f5f3ff 100%);
    --grad-card: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);

    /* Neutrals */
    --bg: #f4f7fb;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Typography */
    --font: 'Poppins', sans-serif;

    /* Spacing */
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 18px;
    --r-xl: 20px;
    --r-2xl: 24px;
    --r-pill: 100px;

    /* Shadows */
    --sh-xs: 0 1px 3px rgba(0, 0, 0, .05), 0 1px 2px rgba(0, 0, 0, .04);
    --sh-sm: 0 2px 8px rgba(15, 23, 42, .06), 0 1px 3px rgba(0, 0, 0, .04);
    --sh-md: 0 4px 24px rgba(15, 23, 42, .08), 0 2px 8px rgba(0, 0, 0, .04);
    --sh-lg: 0 8px 40px rgba(15, 23, 42, .10), 0 4px 16px rgba(0, 0, 0, .05);
    --sh-xl: 0 20px 60px rgba(15, 23, 42, .12), 0 8px 24px rgba(0, 0, 0, .06);
    --sh-btn: 0 4px 20px rgba(37, 99, 235, .38), 0 1px 4px rgba(124, 58, 237, .2);
    --sh-glow: 0 0 0 3px rgba(37, 99, 235, .18), 0 4px 16px rgba(37, 99, 235, .10);
    --sh-green: 0 4px 20px rgba(22, 163, 74, .25), 0 1px 4px rgba(22, 163, 74, .12);

    /* Transitions */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --t: all .22s var(--ease);
    --t-slow: all .4s var(--ease);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Open Sans', sans-serif;
    /* font-family: var(--font); */
    background: var(--bg);
    color: var(--gray-800);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Subtle dot-grid texture on the page background */
    background-image:
        radial-gradient(circle at 20% 10%, rgba(37, 99, 235, .05) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(124, 58, 237, .04) 0%, transparent 50%),
        radial-gradient(rgba(148, 163, 184, .18) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 28px 28px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
  font-family: 'Open Sans', sans-serif;
}

/* =========================================================
   PAGE WRAPPER
   ========================================================= */
.page {
    min-height: 100vh;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* =========================================================
   MAIN CONTAINER — two-column card
   ========================================================= */
.main-card {
    width: 100%;
    max-width: 1140px;
    background: var(--white);
    border-radius: var(--r-2xl);
    box-shadow: var(--sh-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Entry animation */
    animation: cardReveal .55s var(--ease) both;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.99);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Vertical divider between columns */
.main-card::before {
    content: '';
    position: absolute;
    /* handled via border-right on left section */
}

/* =========================================================
   LEFT SECTION — Informational
   ========================================================= */
.left-section {
    padding: 10px 40px 40px;
    background: var(--grad-hero);
    border-right: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    animation: fadeSlideLeft .55s .1s var(--ease) both;
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Decorative blobs */
.left-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .08), transparent 70%);
    pointer-events: none;
}

.left-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, .06), transparent 70%);
    pointer-events: none;
}

/* Logo */
.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-width: 250px;
    /* apne hisab se change kar sakte ho */
    width: 100%;
    object-fit: contain;
}





.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--grad-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    color: white;
    box-shadow: 0 3px 12px rgba(37, 99, 235, .35);
    flex-shrink: 0;
    letter-spacing: -.02em;
}

.logo-text {
    line-height: 1.15;
}

.logo-text .lt1 {
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -.02em;
}

.logo-text .lt2 {
    font-size: 9px;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Hindi tagline */
.hindi-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 22px;
    letter-spacing: .02em;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hindi-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--grad-btn);
    border-radius: 2px;
    display: inline-block;
    flex-shrink: 0;
}

/* Main heading */
.left-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -.03em;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-align:center;
}

.left-heading .accent {
    color: var(--green);
}

.left-sub {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
    font-weight: 400;
    max-width:100%;
    margin-bottom:5px;
    position: relative;
    z-index: 1;
    text-align:center;
}



.id-card-illus {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.idc-body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.idc-body img {
    display: block;
    margin: auto;
}




/* ── ID Card Illustration ── */
.id-card-illus {
    background: var(--white);
    border-radius: var(--r-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--sh-md);
    overflow: hidden;
    margin-bottom:5px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.idc-stripe {
    height: 4px;
    background: var(--grad-btn);
}

/* .idc-body {
    padding: 14px 16px 16px;
} */

.idc-row1 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--gray-200);
}

.idc-avatar {
    width: 46px;
    height: 52px;
    border-radius: 9px;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.idc-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}

.idc-idnum {
    font-size: 10.5px;
    color: var(--blue);
    font-weight: 600;
font-family: 'Open Sans', sans-serif;
    letter-spacing: .04em;
    margin-top: 2px;
}

.idc-shield {
    margin-left: auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--green-light);
    border: 2px solid var(--green-rim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 14px;
    flex-shrink: 0;
}

.idc-row2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.idc-field .fl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.idc-field .fv {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 2px;
}

.idc-field .fv.green {
    color: var(--green);
}

.idc-qr {
    width: 38px;
    height: 38px;
    background: var(--gray-900);
    border-radius: 6px;
    display: grid;
    place-items: center;
    padding: 5px;
}

.qr-g {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5px;
    width: 100%;
    height: 100%;
}

.qr-c {
    background: white;
    border-radius: .5px;
}

.qr-c.e {
    background: transparent;
}

/* ── Feature list ── */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 14px;
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--sh-xs);
    transition: var(--t);
}

.feat-item:hover {
    border-color: rgba(37, 99, 235, .25);
    box-shadow: var(--sh-sm);
    transform: translateX(4px);
}

.feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.feat-icon.blue {
    background: var(--blue-light);
    color: var(--blue);
    border: 1px solid #bfdbfe;
}

.feat-icon.green {
    background: var(--green-light);
    color: var(--green);
    border: 1px solid var(--green-rim);
}

.feat-icon.purple {
    background: var(--purple-light);
    color: var(--purple);
    border: 1px solid #ddd6fe;
}

.feat-text .ftt {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--gray-900);
}

.feat-text .fts {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-500);
    margin-top: 1px;
    line-height: 1.5;
}

/* ── Security badge ── */
.security-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background:#d9eddf;
}

.security-icon i {
    font-size: 22px;
    color: #0769b2;
}

.security-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.security-text strong {
    font-size: 15px;
    color: #111;
    line-height: 1.4;
}

.security-text p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #666;
}

/* =========================================================
   RIGHT SECTION — Login Form
   ========================================================= */
.right-section {
    padding: 36px 40px 40px;
    display: flex;
    flex-direction: column;
    animation: fadeSlideRight .55s .15s var(--ease) both;
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Language dropdown */
.lang-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 83px;
}

.lang-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px 7px 11px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: var(--t);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gray-600);
    user-select: none;
}

.lang-select-wrap:hover {
    border-color: var(--blue-mid);
    color: var(--blue);
    background: var(--blue-light);
}

.lang-select-wrap i {
    font-size: 13px;
    color: var(--blue);
}

.lang-select-wrap select {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    border: none;
    background: none;
}

/* Form heading */
.form-heading {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -.025em;
    margin-bottom: 5px;
}

.form-sub {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 400;
    margin-bottom: 28px;
}

/* ── Input Fields ── */
.input-group {
    margin-bottom: 16px;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap .in-icon {
    position: absolute;
    left: 14px;
    color: var(--gray-400);
    font-size: 15px;
    pointer-events: none;
    transition: color .2s var(--ease);
    z-index: 1;
}

.input-wrap input {
    width: 100%;
    height: 50px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: 0 44px 0 42px;
font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    background: var(--gray-50);
    outline: none;
    transition: var(--t);
    /* iOS font zoom prevention */
}

.input-wrap input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.input-wrap input:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: var(--sh-glow);
}

.input-wrap input:focus~.in-icon,
.input-wrap:focus-within .in-icon {
    color: var(--blue);
}

.input-wrap .toggle-eye {
    position: absolute;
    right: 14px;
    color: var(--gray-400);
    font-size: 15px;
    cursor: pointer;
    transition: color .2s var(--ease);
    background: none;
    border: none;
    padding: 4px;
    border-radius: 6px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.input-wrap .toggle-eye:hover {
    color: var(--blue);
    background: var(--blue-light);
}

/* Password row with forgot */
.pass-row {
    margin-bottom:50px;
}

.input-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
}


.forgot-link {
    display: block;
    text-align: right;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    margin-top: 7px;
    transition: color .2s;
}

.forgot-link:hover {
    color: var(--purple);
    text-decoration: underline;
}

/* ── Primary Login Button ── */
.btn-login {
    width: 100%;
    height: 50px;
    background: var(--grad-btn);
    color: white;
    border: none;
    border-radius: var(--r-md);
font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    box-shadow: var(--sh-btn);
    transition: var(--t);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 18px;
}

/* Shine overlay */
.btn-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .18) 0%, transparent 55%);
    border-radius: var(--r-md);
    pointer-events: none;
}

/* Sweep shimmer on hover */
.btn-login::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 35%;
    height: 200%;
    background: rgba(255, 255, 255, .18);
    transform: skewX(-22deg);
    transition: left .55s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(37, 99, 235, .52), 0 4px 12px rgba(124, 58, 237, .3);
}

.btn-login:hover::after {
    left: 140%;
}

.btn-login:active {
    transform: translateY(0);
}

/* ── Divider ── */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0 16px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.divider span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    white-space: nowrap;
}

/* ── OTP Button ── */
.btn-otp {
    width: 100%;
    height: 50px;
    background: var(--white);
    color: var(--blue);
    border: 1.5px solid var(--blue);
    border-radius: var(--r-md);
font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
}

.btn-otp:hover {
    background: var(--blue-light);
    border-color: var(--blue);
    box-shadow: var(--sh-sm);
    transform: translateY(-1px);
}

.btn-otp:active {
    transform: translateY(0);
}

/* ── Register row ── */
.register-row {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 400;
    margin-bottom: 119px;
}

.register-row a {
    color: var(--blue);
    font-weight: 700;
    transition: color .2s;
}

.register-row a:hover {
    color: var(--purple);
    text-decoration: underline;
}

/* ── Green info card ── */
.green-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    background: var(--grad-card);
    border: 1px solid var(--green-rim);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-green);
    transition: var(--t);
    margin-top: auto;
}

.green-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(22, 163, 74, .25);
}

.green-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-light);
    border: 2px solid var(--green-rim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--green);
    flex-shrink: 0;
}

.green-info-text {
    flex: 1;
}

.green-info-text .git {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.green-info-text .gis {
    font-size: 11.5px;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.5;
}

.green-info-arrow {
    color: var(--green);
    font-size: 16px;
    flex-shrink: 0;
}

/* =========================================================
   BOTTOM SECTION — Why Choose Saksham ID?
   ========================================================= */
.bottom-section {
    width: 100%;
    max-width: 1140px;
    animation: fadeUp .55s .25s var(--ease) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bottom-heading {
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -.025em;
    margin-bottom: 4px;
    text-align: center;
}

.bottom-sub {
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.feat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    padding: 20px 18px;
    box-shadow: var(--sh-sm);
    transition: var(--t-slow);
    position: relative;
    overflow: hidden;
}

.feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-btn);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
}

.feat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: rgba(37, 99, 235, .2);
}

.feat-card:hover::after {
    transform: scaleX(1);
}
.feat-card {
    text-align: center;
}

.feat-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;
    /* center icon */

    font-size: 24px;
    color: #fff;
}


.fc-blue {
    background: var(--blue-light);
    color: var(--blue);
    border: 1px solid #bfdbfe;
}

.fc-green {
    background: var(--green-light);
    color: var(--green);
    border: 1px solid var(--green-rim);
}

.fc-purple {
    background: var(--purple-light);
    color: var(--purple);
    border: 1px solid #ddd6fe;
}

.fc-amber {
    background: #fef3c7;
    color: #d97706;
    border: 1px solid #fde68a;
}

.feat-card h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
    letter-spacing: -.01em;
}

.feat-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.65;
    font-weight: 600;
}


/* Colors */
.fc-green {
    background: #34c27a;
    color:white;
}

.fc-orange {
    background: #ff9b2f;
    color: white;
}

.fc-blue {
    background: #2f80ff;
    color: white;
}

.fc-purple {
    background: #8b5cf6;
    color: white;
}


/* =========================================================
   FOOTER
   ========================================================= */
/* .footer {
    width: 100%;
    max-width: 1140px;
    animation: fadeUp .55s .35s var(--ease) both;
}

.footer-help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xs);
    margin-bottom: 16px;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    transition: color .2s;
}

.help-item:hover {
    color: var(--blue);
}

.help-item i {
    font-size: 15px;
    color: var(--blue);
}

.help-divider {
    width: 1px;
    height: 20px;
    background: var(--gray-200);
} */


.footer-help {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.help-title {
    font-size: 18px;
    font-weight: 400;
    color: #4b5563;
    margin-bottom: 16px;
}

.help-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom:18px;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5b6175;
    font-size: 15px;
    font-weight: 400;
}

.help-item i {
    font-size: 15px;
    color: #5b6175;
}

.help-divider {
    width: 1px;
    height: 18px;
    background: #d1d5db;
}

/* Responsive */
@media (max-width: 600px) {

    .help-row {
        flex-direction: column;
        gap: 14px;
    }

    .help-divider {
        display: none;
    }

    .help-item {
        font-size: 14px;
    }
}


.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 4px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-copy {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 400;
}

/* =========================================================
   TOAST NOTIFICATION
   ========================================================= */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    background: var(--gray-900);
    color: white;
    border-radius: var(--r-md);
    box-shadow: var(--sh-lg);
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast.success {
    background: #166534;
}

.toast.error {
    background: #7f1d1d;
}

.toast i {
    font-size: 15px;
}

/* =========================================================
   LOADING STATE ON BUTTON
   ========================================================= */
.btn-login.loading .btn-label {
    opacity: 0;
}

.btn-login .spinner {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin .65s linear infinite;
    display: none;
}

.btn-login.loading .spinner {
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   RESPONSIVE — TABLET ≤ 960px
   ========================================================= */
@media (max-width: 960px) {
    .main-card {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .left-section {
        padding: 32px 28px 28px;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .right-section {
        padding: 28px 28px 32px;
    }

    .feat-cards {
        grid-template-columns: 1fr 1fr;
    }

    .left-heading {
        font-size: 22px;
    }

    .idc-row2 .idc-field:nth-child(2) {
        display: none;
    }

    /* hide middle field on small */
}

/* =========================================================
   RESPONSIVE — MOBILE ≤ 540px
   ========================================================= */
@media (max-width: 540px) {
    .page {
        padding: 16px 14px;
        gap: 20px;
    }

    .main-card {
        border-radius: var(--r-xl);
    }

    .left-section {
        padding: 24px 20px 22px;
    }

    .right-section {
        padding: 22px 20px 28px;
    }

    .left-heading {
        font-size: 20px;
    }

    .left-sub {
        font-size: 12.5px;
    }

    .form-heading {
        font-size: 20px;
    }

    .feat-cards {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-links {
        justify-content: center;
    }

    .btn-login,
    .btn-otp {
        height: 48px;
    }

    .input-wrap input {
        height: 48px;
    }

    .lang-row {
        margin-bottom: 20px;
    }
}

/* =========================================================
   RESPONSIVE — LARGE DESKTOP ≥ 1200px
   ========================================================= */
@media (min-width: 1200px) {
    .left-heading {
        font-size: 25px;
    }

    .form-heading {
        font-size: 26px;
    }
}

/* =========================================================
   UTILITY
   ========================================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}




/* otp send  */

.otp-btn {
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #0769b2;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.otp-wrapper {
    display: none;
    margin-top: 18px;
}

.otp-label {
    margin-bottom: 10px;
}

.otp-boxes {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.otp-input {
    width: 45px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    outline: none;
}

.otp-input:focus {
    border-color: #0769b2;
}


.mobile-otp-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.mobile-input {
    flex: 1;
}

.send-otp-btn {
    height: 52px;
    padding: 0 18px;
    border: none;
    border-radius: 10px;
    background: #0769b2;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}

.otp-wrapper {
    display: none;
    margin-top: 18px;
}

.otp-boxes {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.otp-input {
    width: 45px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    outline: none;
}

.otp-input:focus {
    border-color: #0769b2;
}



.footer-bottom {
    width: 100%;
    padding: 18px 0;
    border-top: 1px solid #e5e7eb;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 14px;
    color: #667085;
    font-weight: 500;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: #667085;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #0769b2;
}

.footer-links span {
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

.footer{
 width:60%;
}


.bottom-section{
    background-color: #ffffff;
        padding: 20px;
        border-radius: 25px;
}

