
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Inter', sans-serif; background: #f0f3f9; min-height: 80vh; display: flex; }

    /* ── Split Layout ─────────────────────────────── */
    .login-wrap { display: flex; width: 100%; min-height: 100vh; padding:0px}
    .topview{ display: none;}
    /* ── Left Panel ────────────────────────────────── */
    .login-left {
      flex: 0 0 48%;
      background: linear-gradient(145deg, #1a2850 0%, #0d4a9a 55%, #0d6efd 100%);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      /* padding: 60px 56px; */
      overflow: hidden;
    }
    .login-left::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,.04);
      pointer-events: none;
    }
    .login-left::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: rgba(255,255,255,.04);
      pointer-events: none;
    }
    .ll-logo-icon {
      width: 80px; height: 80px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.966);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      backdrop-filter: blur(6px);
      padding: 10px;
    }
    .ll-logo-icon i { font-size: 36px; color: #fff; }
    .ll-brand { font-size: 32px; font-weight: 900; color: #fff; letter-spacing: 2px; line-height: 1; }
    .ll-sub { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.65); letter-spacing: 3px; text-transform: uppercase; margin-top: 4px; margin-bottom: 32px; }
    .ll-tagline { font-size: 16px; font-weight: 400; color: rgba(255,255,255,.8); line-height: 1.65; text-align: center; margin-bottom: 40px; max-width: 600px; }
    .ll-features { width: 100%; max-width: 340px; display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
    .ll-feat { display: flex; align-items: center; gap: 14px; }
    .ll-feat-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      backdrop-filter: blur(4px);
    }
    .ll-feat-icon i { font-size: 16px; color: #fff; }
    .ll-feat-text { font-size: 13.5px; color: rgba(255,255,255,.85); font-weight: 500; }
    .ll-powered { font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: .5px; }

    /* Contact details on left panel */
    .ll-contact { width: 100%; max-width: 340px; margin-bottom: 32px; }
    .ll-contact-title {
      font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,.45);
      text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
    }
    .ll-contact-item {
      display: flex; align-items: center; gap: 12px;
      padding: 10px 14px; border-radius: 10px;
      background: rgba(255,255,255,.08); margin-bottom: 8px;
      transition: background .2s; text-decoration: none;
    }
    .ll-contact-item:last-child { margin-bottom: 0; }
    .ll-contact-item:hover { background: rgba(255,255,255,.16); }
    .ll-contact-icon {
      width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 15px;
    }
    .ll-contact-text { display: flex; flex-direction: column; gap: 1px; }
    .ll-contact-label { font-size: 10px; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
    .ll-contact-value { font-size: 13px; color: rgba(255,255,255,.9); font-weight: 600; }

    /* ── Right Panel ────────────────────────────────── */
    .login-right {
      flex: 1;
      background: #fff;
      display: flex;
      flex-direction: column;
      /* justify-content: center; */
      align-items: center;
      /* padding: 60px 48px; */
      width: 100%;
    }
    .lr-inner {       
      flex: 1;
      background: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      min-height:calc(100vh - 250px);

    }

    .lr-heading { font-size: 25px; font-weight: 800; color: #1a2850; margin-bottom: 6px; }
    .lr-sub { font-size: 14px; color: #8a9ab5; font-weight: 400; margin-bottom: 36px; }

    /* Form elements */
    .f-group { margin-bottom: 20px; }
    .f-label { font-size: 12.5px; font-weight: 600; color: #4a5568; margin-bottom: 6px; display: block; }
    .f-input-wrap { position: relative; }
    .f-input-wrap .fi-icon {
      position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
      color: #a0abbe; font-size: 14px; pointer-events: none;
    }
    .f-input-wrap .fi-toggle {
      position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
      color: #a0abbe; font-size: 14px; cursor: pointer; background: none; border: none; padding: 0;
      transition: color .2s;
    }
    .f-input-wrap .fi-toggle:hover { color: #1a2850; }
    .f-input {
      width: 100%; padding: 12px 44px 12px 42px;
      border: 1.5px solid #e2e8f0; border-radius: 1px;
      font-size: 14px; font-family: 'Inter', sans-serif;
      color: #2d3a4e; background: #f8fafc;
      transition: border-color .2s, box-shadow .2s;
      outline: none;
    }
    .f-input:focus { border-color: #0d6efd; box-shadow: 0 0 0 3px rgba(13,110,253,.12); background: #fff; }
    .f-input.no-left-pad { padding-left: 14px; }

    /* Remember / Forgot row */
    .remember-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
    .remember-row label { font-size: 13px; color: #5a6a7e; font-weight: 500; display: flex; align-items: center; gap: 7px; cursor: pointer; }
    .remember-row input[type="checkbox"] { accent-color: #0d6efd; width: 15px; height: 15px; cursor: pointer; }
    .forgot-link { font-size: 13px; color: #0d6efd; font-weight: 600; text-decoration: none; }
    .forgot-link:hover { text-decoration: underline; }

    /* Sign-in button */
    .btn-signin {
      width: 100%; height: 48px;
      background: linear-gradient(90deg, #1a2850, #0d6efd);
      color: #fff; font-size: 15px; font-weight: 700;
      border: none; border-radius: 50px; cursor: pointer;
      transition: transform .15s, box-shadow .2s, opacity .2s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      font-family: 'Inter', sans-serif;
    }
    .btn-signin:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,110,253,.35); }
    .btn-signin:active { transform: translateY(0); }
    .btn-signin:disabled { opacity: .75; cursor: not-allowed; transform: none; }

    /* Divider OR */
    .or-divider { display: flex; align-items: center; gap: 14px; margin: 22px 0; }
    .or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }
    .or-divider span { font-size: 12px; color: #b0bec5; font-weight: 600; letter-spacing: 1px; }

    /* Tenant ID button */
    .btn-tenant-id {
      width: 100%; height: 44px;
      background: transparent;
      color: #1a2850; font-size: 14px; font-weight: 600;
      border: 1.5px solid #1a2850; border-radius: 50px; cursor: pointer;
      transition: all .2s;
      font-family: 'Inter', sans-serif;
    }
    .btn-tenant-id:hover { background: #1a2850; color: #fff; }

    /* Helper text */
    .help-text { text-align: center; font-size: 12.5px; color: #9aaabe; margin-top: 28px; }
    .admin-link-text { text-align: center; font-size: 12.5px; color: #b0bec5; margin-top: 10px; }
    .admin-link-text a { color: #0d6efd; font-weight: 600; text-decoration: none; }
    .admin-link-text a:hover { text-decoration: underline; }

    /* Demo credentials */
    .demo-box {
      background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 10px;
      padding: 14px 16px; margin-bottom: 24px;
    }
    .demo-box .demo-title { font-size: 11.5px; font-weight: 700; color: #1d4ed8; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
    .demo-box .demo-row { font-size: 12px; color: #3b5998; line-height: 1.8; }
    .demo-box .demo-row span { font-weight: 700; color: #1a2850; }

    /* Spinner */
    .spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* Error message */
    .field-error { font-size: 11.5px; color: #dc3545; margin-top: 5px; display: none; }
    .field-error.show { display: block; }

    /* Responsive */
    @media (max-width: 767px) {
      .login-left { display: none; }
      .login-right { padding: 40px 24px; }
    }

    /* ── Page Loader ── */
    #page-loader{position:fixed;inset:0;background:#1a2850;display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:99999;transition:opacity .5s ease,visibility .5s ease;}
    #page-loader.fade-out{opacity:0;visibility:hidden;}
    .ldr-icon{width:72px;height:72px;border-radius:20px;background:linear-gradient(135deg,#efefef,#ececec);display:flex;align-items:center;justify-content:center;box-shadow:0 8px 32px rgba(13,110,253,.45);margin-bottom:16px;padding:5px}
    .ldr-icon i{color:#fff;font-size:32px;}
    .ldr-brand{font-size:22px;font-weight:900;color:#fff;letter-spacing:2px;margin-bottom:2px;}
    .ldr-sub{font-size:10.5px;color:rgba(255,255,255,.45);letter-spacing:3px;text-transform:uppercase;margin-bottom:28px;}
    .ldr-bar-wrap{width:180px;height:4px;background:rgba(255,255,255,.12);border-radius:2px;overflow:hidden;margin-bottom:18px;}
    .ldr-bar{height:100%;width:0%;background:linear-gradient(90deg,#0d6efd,#3ecfff);border-radius:2px;animation:ldrAnim 1.1s ease forwards;}
    @keyframes ldrAnim{0%{width:0%}60%{width:78%}85%{width:93%}100%{width:100%}}
    .ldr-dots{display:flex;gap:8px;}
    .ldr-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.25);animation:ldrDot 1.2s ease-in-out infinite;}
    .ldr-dot:nth-child(2){animation-delay:.2s;}.ldr-dot:nth-child(3){animation-delay:.4s;}
    @keyframes ldrDot{0%,80%,100%{transform:scale(.65);background:rgba(255,255,255,.25);}40%{transform:scale(1.1);background:#3ecfff;}}
    
    .login-wrap{opacity:0;transition:opacity .55s ease;}

    /* ── OTP boxes ── */
    .otp-wrap{display:flex;gap:10px;justify-content:center;margin-bottom:8px;}
    .otp-input{width:52px;height:58px;border:2px solid #e2e8f0;border-radius:12px;font-size:22px;font-weight:700;text-align:center;font-family:'Inter',sans-serif;color:#1a2850;background:#f8fafc;transition:all .2s;outline:none;}
    .otp-input:focus{border-color:#0d6efd;box-shadow:0 0 0 3px rgba(13,110,253,.12);background:#fff;}
    .otp-input.filled{border-color:#0d6efd;background:#eff6ff;}
    .otp-input.error{border-color:#dc3545;background:#fde8ea;animation:otpShake .3s ease;}
    @keyframes otpShake{0%,100%{transform:translateX(0)}25%{transform:translateX(-5px)}75%{transform:translateX(5px)}}



    
    /* Steps indicator (left panel) */
    .steps-indicator{width:100%;max-width:340px;display:flex;flex-direction:column;gap:0;}
    .step-item{display:flex;align-items:flex-start;gap:16px;position:relative;}
    .step-item:not(:last-child)::after{content:'';position:absolute;left:18px;top:36px;width:2px;height:44px;background:rgba(255,255,255,.2);}
    .step-num{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:700;flex-shrink:0;border:2px solid rgba(255,255,255,.3);color:rgba(255,255,255,.5);background:transparent;transition:all .3s;}
    .step-num.done{background:#198754;border-color:#198754;color:#fff;}
    .step-num.active{background:#fff;border-color:#fff;color:#1a2850;}
    .step-text{padding-top:7px;}
    .step-label{font-size:13.5px;font-weight:700;color:rgba(255,255,255,.9);line-height:1;}
    .step-desc{font-size:12px;color:rgba(255,255,255,.5);margin-top:3px;}
    .step-item{padding-bottom:28px;}
    .ll-powered{font-size:12px;color:rgba(255,255,255,.4);letter-spacing:.5px;margin-top:40px;}

    /* ── Right panel ─── */
    .right-panel{flex:1;background:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:60px 48px;}
    .rp-inner{width:100%;max-width:420px;}

    /* Step panels */
    .step-panel{display:none;}.step-panel.active{display:block;}

    /* Icon header for each step */
    .step-icon-wrap{width:72px;height:72px;border-radius:20px;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;}
    .step-heading{font-size:26px;font-weight:800;color:#1a2850;margin-bottom:6px;text-align:center;}
    .step-subheading{font-size:14px;color:#8a9ab5;margin-bottom:32px;text-align:center;line-height:1.6;}

    /* Form elements */
    .f-group{margin-bottom:20px;}
    .f-label{font-size:12.5px;font-weight:600;color:#4a5568;margin-bottom:6px;display:block;}
    .f-input-wrap{position:relative;}
    .fi-icon{position:absolute;left:14px;top:50%;transform:translateY(-50%);color:#a0abbe;font-size:14px;pointer-events:none;}
    .fi-toggle{position:absolute;right:14px;top:50%;transform:translateY(-50%);color:#a0abbe;font-size:14px;cursor:pointer;background:none;border:none;padding:0;transition:color .2s;}
    .fi-toggle:hover{color:#1a2850;}
    .f-input{width:100%;padding:12px 44px 12px 42px;border:1.5px solid #e2e8f0;border-radius:10px;font-size:14px;font-family:'Inter',sans-serif;color:#2d3a4e;background:#f8fafc;transition:border-color .2s,box-shadow .2s;outline:none;}
    .f-input:focus{border-color:#0d6efd;box-shadow:0 0 0 3px rgba(13,110,253,.12);background:#fff;}
    .f-input.no-icon{padding-left:14px;}
    .f-hint{font-size:12px;color:#9aaabe;margin-top:5px;}
    .field-error{font-size:11.5px;color:#dc3545;margin-top:5px;display:none;}
    .field-error.show{display:block;}

    /* OTP input group */
    .otp-wrap{display:flex;gap:10px;justify-content:center;margin-bottom:8px;}
    .otp-input{width:52px;height:56px;border:2px solid #e2e8f0;border-radius:12px;font-size:22px;font-weight:700;text-align:center;font-family:'Inter',sans-serif;color:#1a2850;background:#f8fafc;transition:all .2s;outline:none;}
    .otp-input:focus{border-color:#0d6efd;box-shadow:0 0 0 3px rgba(13,110,253,.12);background:#fff;}
    .otp-input.filled{border-color:#0d6efd;background:#eff6ff;}
    .otp-input.error{border-color:#dc3545;background:#fde8ea;animation:shake .3s ease;}
    @keyframes shake{0%,100%{transform:translateX(0);}25%{transform:translateX(-5px);}75%{transform:translateX(5px);}50%{transform:translateX(-5px);}}

    /* Timer */
    .otp-timer{text-align:center;font-size:13px;color:#8a9ab5;margin-bottom:20px;}
    .otp-timer span{font-weight:700;color:#0d6efd;}
    .resend-link{font-size:13px;color:#0d6efd;font-weight:600;cursor:pointer;text-decoration:none;background:none;border:none;}
    .resend-link:hover{text-decoration:underline;}
    .resend-link:disabled{color:#b0bec5;cursor:not-allowed;text-decoration:none;}

    /* Password strength */
    .pwd-bar-wrap{margin-top:6px;margin-bottom:14px;}
    .pwd-bar-track{height:5px;background:transparent;border-radius:3px;overflow:hidden;}
    .pwd-bar-fill{height:100%;border-radius:3px;width:0%;transition:width .4s ease,background .4s ease;}
    .pwd-strength-text{font-size:11.5px;font-weight:600;margin-top:5px;}

    /* Password rules checklist */
    .pwd-rules{list-style:none;padding:0;margin:0 0 16px;display:flex;flex-direction:column;gap:5px;}
    .pwd-rules li{font-size:12px;color:#9aaabe;display:flex;align-items:center;gap:7px;transition:color .2s;}
    .pwd-rules li.ok{color:#198754;}
    .pwd-rules li i{font-size:12px;width:14px;}

    /* Main CTA buttons */
    .btn-cta{width:100%;height:48px;background:linear-gradient(90deg,#1a2850,#0d6efd);color:#fff;font-size:15px;font-weight:700;border:none;border-radius:50px;cursor:pointer;transition:transform .15s,box-shadow .2s,opacity .2s;display:flex;align-items:center;justify-content:center;gap:8px;font-family:'Inter',sans-serif;}
    .btn-cta:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(13,110,253,.35);}
    .btn-cta:active{transform:translateY(0);}
    .btn-cta:disabled{opacity:.75;cursor:not-allowed;transform:none;}
    .btn-back{width:100%;height:44px;background:transparent;color:#5a6a7e;font-size:14px;font-weight:600;border:1.5px solid #e2e8f0;border-radius:50px;cursor:pointer;transition:all .2s;font-family:'Inter',sans-serif;display:flex;align-items:center;justify-content:center;gap:7px;margin-top:12px;}
    .btn-back:hover{border-color:#1a2850;color:#1a2850;background:#f8fafc;}

    /* Success icon */
    .success-icon{width:90px;height:90px;border-radius:50%;background:linear-gradient(135deg,#e8f8ee,#d1fae5);display:flex;align-items:center;justify-content:center;margin:0 auto 20px;}
    .success-icon i{font-size:40px;color:#198754;}

    /* Back to login link */
    .back-to-login{text-align:center;font-size:13px;color:#9aaabe;margin-top:20px;}
    .back-to-login a{color:#0d6efd;font-weight:600;text-decoration:none;}
    .back-to-login a:hover{text-decoration:underline;}

    /* Spinner */
    .spinner{width:18px;height:18px;border:2px solid rgba(255,255,255,.35);border-top-color:#fff;border-radius:50%;animation:spin .7s linear infinite;}
    @keyframes spin{to{transform:rotate(360deg);}}

    /* Info box */
    .info-box{background:#eff6ff;border:1px solid #bfdbfe;border-radius:10px;padding:13px 15px;margin-bottom:22px;font-size:12.5px;color:#1d4ed8;display:flex;align-items:flex-start;gap:10px;}
    .info-box i{margin-top:1px;flex-shrink:0;}

    /* Responsive */
    @media(max-width:767px){
        .left-panel{display:none;}.right-panel{padding:40px 24px;}
        .topview{ flex: 1;display: flex;flex-direction: column;align-items: center;padding-top: 15px;height: 200px;}
           .lr-inner { border-top-left-radius: 60px;border-top-right-radius: 60px}

}
    ::-webkit-scrollbar{width:6px;}::-webkit-scrollbar-thumb{background:#c8d0e0;border-radius:3px;}
  