
  *{margin:0;padding:0;box-sizing:border-box;}
  html,body{height:100%;font-family:'Hind Siliguri',sans-serif;}

  .page{
    min-height:100vh;
    background:#071a0e;
    display:flex;align-items:center;justify-content:center;
    position:relative;overflow:hidden;
  }

  /* Background cityscape */
  .bg-scene{
    position:absolute;inset:0;
    width:100%;height:100%;
    object-fit:cover;
  }

  /* Dark overlay */
  .overlay{
    position:absolute;inset:0;
    background:linear-gradient(135deg,rgba(5,25,14,0.92) 0%,rgba(4,20,12,0.78) 50%,rgba(7,30,18,0.88) 100%);
    z-index:1;
  }

  /* Decorative circles */
  .deco{position:absolute;border-radius:50%;pointer-events:none;z-index:2;}
  .deco-1{width:500px;height:500px;top:-140px;right:-100px;background:rgba(29,158,117,0.07);border:1px solid rgba(29,158,117,0.1);}
  .deco-2{width:300px;height:300px;bottom:-80px;left:-70px;background:rgba(29,158,117,0.05);border:1px solid rgba(29,158,117,0.08);}
  .deco-3{width:200px;height:200px;top:35%;right:3%;background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.04);}
  .deco-4{width:120px;height:120px;top:10%;left:35%;background:rgba(29,158,117,0.04);}

  /* Dot grid overlay */
  .dots-overlay{
    position:absolute;inset:0;z-index:2;pointer-events:none;
    background-image:radial-gradient(circle, rgba(29,158,117,0.13) 1px, transparent 1px);
    background-size:28px 28px;
  }

  /* ── MAIN LAYOUT ── */
  .layout{
    position:relative;z-index:10;
    display:flex;align-items:center;
    gap:72px;
    max-width:900px;
    width:100%;
    padding:40px 32px;
  }

  /* ── LEFT INFO PANEL ── */
  .left-info{
    flex:1;color:white;
    animation:fadeLeft .7s cubic-bezier(.22,1,.36,1) both;
  }
  @keyframes fadeLeft{from{opacity:0;transform:translateX(-24px);}to{opacity:1;transform:translateX(0);}}

  .li-badge{
    display:inline-flex;align-items:center;gap:7px;
    background:rgba(29,158,117,0.2);
    border:1px solid rgba(29,158,117,0.35);
    border-radius:20px;padding:6px 16px;
    font-size:12px;color:#9FE1CB;font-weight:500;
    margin-bottom:20px;
  }
  .li-dot{width:7px;height:7px;background:#1D9E75;border-radius:50%;animation:blink 2s ease-in-out infinite;}
  @keyframes blink{0%,100%{opacity:1;}50%{opacity:.35;}};

  .li-title{
    font-size:28px;font-weight:600;
    line-height:1.35;margin-bottom:10px;
    color:white;
  }
  .li-title span{color:#5DCAA5;}

  .li-sub{
    font-size:13px;color:rgba(255,255,255,.58);
    line-height:1.75;margin-bottom:28px;
  }

  /* Divider */
  .li-div{width:48px;height:3px;background:#1D9E75;border-radius:2px;margin-bottom:28px;}

  .li-stats{display:flex;flex-direction:column;gap:14px;}
  .li-stat-row{
    display:flex;align-items:center;gap:14px;
    padding:12px 16px;
    background:rgba(29,158,117,0.08);
    border:1px solid rgba(29,158,117,0.15);
    border-radius:12px;
    transition:background .2s;
  }
  .li-stat-row:hover{background:rgba(29,158,117,0.14);}
  .li-stat-icon{
    width:36px;height:36px;min-width:36px;
    background:rgba(29,158,117,0.18);
    border:1px solid rgba(29,158,117,0.28);
    border-radius:9px;
    display:flex;align-items:center;justify-content:center;
  }
  .li-stat-icon svg{width:16px;height:16px;stroke:#9FE1CB;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
  .li-stat-num{font-size:14px;font-weight:600;color:white;margin-bottom:1px;}
  .li-stat-lbl{font-size:11px;color:rgba(255,255,255,.52);}

  .li-footer{
    margin-top:28px;
    display:flex;align-items:center;gap:10px;
    font-size:11px;color:rgba(255,255,255,.35);
  }
  .li-footer-dot{width:4px;height:4px;background:rgba(255,255,255,.25);border-radius:50%;}

  /* ── LOGIN CARD ── */
  .card{
    width:400px;flex-shrink:0;
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 28px 64px rgba(0,0,0,.4),0 6px 20px rgba(0,0,0,.25);
    animation:fadeUp .7s cubic-bezier(.22,1,.36,1) .1s both;
  }
  @keyframes fadeUp{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}

  /* Card top green header */
  .card-top{
    background:#1D9E75;
    padding:30px 32px 26px;
    text-align:center;
    position:relative;overflow:hidden;
  }
  .card-top::before{
    content:'';position:absolute;
    width:220px;height:220px;border-radius:50%;
    background:rgba(255,255,255,0.07);
    top:-90px;right:-70px;pointer-events:none;
  }
  .card-top::after{
    content:'';position:absolute;
    width:130px;height:130px;border-radius:50%;
    background:rgba(255,255,255,0.05);
    bottom:-55px;left:-35px;pointer-events:none;
  }

  /* DSCC Logo ring */
  .logo-ring{
    width:86px;height:86px;border-radius:50%;
    background:white;
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 16px;
    box-shadow:0 4px 18px rgba(0,0,0,.18);
    position:relative;z-index:2;
    padding:6px;
  }
  .logo-ring svg{width:72px;height:72px;}

  .card-org{font-size:15px;font-weight:600;color:white;margin-bottom:3px;position:relative;z-index:2;}
  .card-org-en{font-size:11px;color:rgba(255,255,255,.65);position:relative;z-index:2;}

  /* Powered badge */
  .powered-badge{
    display:inline-flex;align-items:center;gap:5px;
    background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,.2);
    border-radius:20px;padding:4px 12px;
    font-size:10px;color:rgba(255,255,255,.75);
    margin-top:10px;position:relative;z-index:2;
  }

  /* Card body */
  .card-body{padding:28px 32px 32px;}

  .form-title{
    font-size:16px;font-weight:600;color:#085041;
    text-align:center;margin-bottom:22px;
  }

  /* Fields */
  .field{margin-bottom:16px;}
  .field label{
    display:block;font-size:12px;font-weight:600;
    color:#495057;margin-bottom:6px;
  }
  .field-wrap{position:relative;display:flex;align-items:center;}
  .field-icon{
    position:absolute;left:12px;pointer-events:none;
    display:flex;align-items:center;justify-content:center;
  }
  .field-icon svg{width:15px;height:15px;fill:none;stroke:#9FE1CB;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
  .field-wrap input{
    width:100%;padding:11px 14px 11px 40px;
    border:1.5px solid #E9ECEF;border-radius:10px;
    font-size:14px;font-family:'Hind Siliguri',sans-serif;
    color:#212529;background:#F8F9FA;
    outline:none;
    transition:border-color .2s,background .2s,box-shadow .2s;
  }
  .field-wrap input:focus{
    border-color:#1D9E75;background:white;
    box-shadow:0 0 0 3px rgba(29,158,117,.1);
  }
  .field-wrap input::placeholder{color:#CED4DA;}
  .field-wrap input.has-right{padding-right:44px;}

  .pw-eye{
    position:absolute;right:12px;
    background:none;border:none;cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    padding:4px;
  }
  .pw-eye svg{width:15px;height:15px;fill:none;stroke:#ADB5BD;stroke-width:2;stroke-linecap:round;transition:stroke .2s;}
  .pw-eye.visible svg{stroke:#1D9E75;}

  /* Options row */
  .options-row{
    display:flex;align-items:center;justify-content:space-between;
    margin-bottom:20px;
  }
  .remember{display:flex;align-items:center;gap:8px;cursor:pointer;user-select:none;}
  .cb{
    width:17px;height:17px;min-width:17px;
    border:1.5px solid #CED4DA;border-radius:4px;
    display:flex;align-items:center;justify-content:center;
    background:white;transition:all .2s;
  }
  .cb.on{background:#1D9E75;border-color:#1D9E75;}
  .cb svg{width:10px;height:10px;display:none;}
  .cb.on svg{display:block;}
  .remember-lbl{font-size:12px;color:#6C757D;}

  .forgot-link{
    font-size:12px;color:#1D9E75;font-weight:600;
    text-decoration:none;
    transition:color .15s;
  }
  .forgot-link:hover{color:#085041;}

  /* Login button */
  .login-btn{
    width:100%;background:#1D9E75;color:white;
    border:none;border-radius:10px;padding:13px;
    font-size:14px;font-weight:600;font-family:'Hind Siliguri',sans-serif;
    cursor:pointer;
    display:flex;align-items:center;justify-content:center;gap:8px;
    transition:all .2s;
    box-shadow:0 4px 14px rgba(29,158,117,.3);
  }
  .login-btn:hover{background:#0F6E56;transform:translateY(-1px);box-shadow:0 6px 20px rgba(29,158,117,.4);}
  .login-btn:active{transform:translateY(0);}
  .login-btn svg{width:16px;height:16px;fill:none;stroke:white;stroke-width:2.5;stroke-linecap:round;}

  /* Loading state */
  .login-btn.loading .btn-label{opacity:0;}
  .login-btn .spinner{
    display:none;width:17px;height:17px;
    border:2.5px solid rgba(255,255,255,.3);
    border-top-color:white;
    border-radius:50%;
    animation:spin .7s linear infinite;
    position:absolute;
  }
  .login-btn.loading .spinner{display:block;}
  @keyframes spin{to{transform:rotate(360deg);}}

  /* Divider */
  .divider{
    display:flex;align-items:center;gap:12px;
    margin:20px 0 0;
  }
  .div-line{flex:1;height:1px;background:#E9ECEF;}
  .div-txt{font-size:11px;color:#ADB5BD;white-space:nowrap;}

  /* Footer */
  .card-footer{
    text-align:center;margin-top:14px;
    font-size:11px;color:#9E9E9E;line-height:1.7;
  }
  .card-footer a{color:#1D9E75;text-decoration:none;font-weight:500;}

  /* Error alert */
  .error-alert{
    display:none;
    background:#FCEBEB;border:1px solid #F09595;
    border-radius:9px;padding:10px 14px;
    font-size:12px;color:#C62828;
    margin-bottom:14px;
    align-items:center;gap:8px;
  }
  .error-alert.show{display:flex;}
  .error-alert svg{width:14px;height:14px;fill:none;stroke:#C62828;stroke-width:2;flex-shrink:0;}

  /* Bottom ribbon */
  .page-footer{
    position:fixed;bottom:0;left:0;right:0;z-index:20;
    background:rgba(5,22,14,.9);
    border-top:1px solid rgba(29,158,117,.15);
    padding:8px 24px;
    display:flex;align-items:center;justify-content:space-between;
    backdrop-filter:blur(10px);
  }
  .pf-left{font-size:11px;color:rgba(255,255,255,.4);}
  .pf-links{display:flex;gap:18px;}
  .pf-links a{font-size:11px;color:rgba(255,255,255,.35);text-decoration:none;}
  .pf-links a:hover{color:rgba(255,255,255,.6);}

  /* Responsive */
  @media(max-width:800px){
    .left-info{display:none;}
    .layout{justify-content:center;padding:24px 16px;}
    .card{width:100%;max-width:400px;}
  }
  @media(max-width:440px){
    .card-top{padding:24px 20px 20px;}
    .card-body{padding:22px 20px 24px;}
  }

