:root {
  --primary: #1a56db;
  --dark:    #0f172a;
}

* { box-sizing: border-box; }

html { height: 100%; }
body.login-body {
  font-family: 'Inter', sans-serif;
  background: #f1f5f9;
  margin: 0;
  height: 100%;
  overflow: hidden;
}

/* Wrapper mengunci tinggi persis 100vh, tanpa scroll pada level halaman */
.login-wrapper {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* ── Left panel ─────────────────────────────────────────────────────────────── */
.login-left {
  flex: 1;
  background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 50%, #1a56db 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 40%, rgba(99,102,241,.25), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(26,86,219,.3), transparent 60%);
  pointer-events: none;
}
.login-left-content {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 4vh, 3rem) clamp(1.5rem, 3vw, 3rem);
  text-align: center;
  width: 100%;
}
.login-logo-icon {
  font-size: clamp(2.5rem, 6vh, 4rem);
  opacity: .9;
  margin-bottom: clamp(.5rem, 1.5vh, 1rem);
  display: block;
  line-height: 1;
}
.login-logo-img {
  max-height: clamp(48px, 10vh, 80px);
  max-width: min(200px, 60%);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
  margin: 0 auto clamp(.4rem, 1vh, .75rem);
}
.login-logo-img.logo-color { filter: none !important; opacity: 1; }
.login-logo-mobile {
  max-height: 44px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
/* Utility — warna asli (logo_invert = off) */
.logo-color { filter: none !important; opacity: 1 !important; }
.login-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vh, 2.2rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: .3rem;
  line-height: 1.2;
}
.login-brand-tagline { font-size: clamp(.85rem, 1.5vh, 1rem); opacity: .7; margin: 0; }

/* ── Right panel ────────────────────────────────────────────────────────────── */
.login-right {
  width: 100%;
  max-width: 520px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Izinkan scroll di panel kanan jika layar sangat pendek */
  overflow-y: auto;
}
@media (min-width: 992px) { .login-right { max-width: 45%; } }

.login-card { width: 100%; max-width: 420px; }
.login-title { font-family: 'Poppins', sans-serif; font-size: 1.75rem; font-weight: 700; color: #0f172a; }
.login-subtitle { font-size: .9rem; }
.login-icon-small { font-size: 2rem; line-height: 1; }
.login-btn { border-radius: 10px; font-weight: 600; padding: .75rem; }
.input-group-text { background: #f8fafc; border-color: #e2e8f0; color: #94a3b8; }
.form-control { border-color: #e2e8f0; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,86,219,.12); }
.btn-outline-secondary { border-color: #e2e8f0; color: #94a3b8; }
.btn-outline-secondary:hover { background: #f1f5f9; border-color: #cbd5e1; color: #64748b; }
