/* public-work.css — login eProcurement KBN (scoped #login, pola landing-login-ptpid) */

html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

#login * {
  box-sizing: border-box;
}

#login {
  font-family: 'Inter', system-ui, sans-serif;
  background: #eef4fb;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: #1e293b;
  overflow: hidden;
}

#login .pl-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100dvh;
  overflow: hidden;
}

/* ── TOPNAV ── */
#login .pl-nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 80, 180, 0.1);
  padding: 0 clamp(20px, 3vw, 40px);
  height: 68px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(30, 80, 180, 0.06);
}

#login .pl-nav-brand {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 16px);
}

#login .pl-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

#login .pl-logo-img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

#login .pl-logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #0f2d6e;
  letter-spacing: -0.5px;
  line-height: 1;
}

#login .pl-logo-sub {
  font-size: 10px;
  color: #64748b;
  font-weight: 400;
}

#login .pl-nav-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, #cbd5e1, transparent);
  margin: 0 4px;
  flex-shrink: 0;
}

#login .pl-nav-epro-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #0052cc;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

#login .pl-nav-epro-sub {
  font-size: 10px;
  color: #64748b;
}

/* ── MAIN ── */
#login .pl-main {
  --pl-card-w: min(clamp(280px, 92%, 400px), min(420px, 38vw));
  --pl-card-margin-l: clamp(10px, 1.2vw, 20px);
  --pl-card-margin-r: clamp(16px, 2.5vw, 36px);
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

/* ── LEFT PANEL ── */
#login .pl-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: calc(var(--pl-card-w) + var(--pl-card-margin-l) + var(--pl-card-margin-r));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  z-index: 1;
}

#login .pl-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #eef4fb;
  background-image: url('../img/bg-login-eproc-kbn-01.png');
  background-repeat: no-repeat;
  background-position: 58% center;
  background-size: cover;
}

#login .pl-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.28) 42%,
    transparent 68%
  );
}

#login .pl-left-top {
  position: relative;
  z-index: 10;
  padding: clamp(28px, 4vh, 44px) clamp(24px, 3vw, 48px) 0;
  flex: 1;
  min-height: 0;
}

#login .pl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 10.5px;
  font-weight: 700;
  color: #0f2d6e;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: clamp(12px, 1.5vh, 18px);
  backdrop-filter: blur(6px);
}

#login .pl-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #f97316;
  border-radius: 50%;
  animation: plPulse 2s infinite;
  flex-shrink: 0;
}

@keyframes plPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

#login .pl-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3.8vh, 42px);
  font-weight: 900;
  color: #0a1f5c;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: clamp(10px, 1.2vh, 16px);
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.5);
}

#login .pl-desc {
  font-size: clamp(12px, 1.5vh, 14px);
  color: #1e3a6e;
  line-height: 1.65;
  max-width: 390px;
  opacity: 0.88;
}

#login .pl-accent-line {
  width: 52px;
  height: 3.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f97316, #0052cc);
  margin: clamp(10px, 1.2vh, 16px) 0 clamp(14px, 2vh, 22px);
}

#login .pl-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 520px;
}

#login .pl-feat {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: clamp(8px, 1.2vh, 12px) 10px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 40, 120, 0.08);
  transition: transform 0.22s, box-shadow 0.22s;
}

#login .pl-feat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 40, 120, 0.15);
}

#login .pl-feat-icon {
  width: clamp(34px, 4vh, 42px);
  height: clamp(34px, 4vh, 42px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 0 auto 8px;
}

#login .pl-feat-title {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

#login .pl-feat-sub {
  font-size: 10px;
  color: #64748b;
  line-height: 1.4;
}

/* ── RIGHT PANEL — floating card ── */
#login .pl-right {
  position: absolute;
  top: 0;
  right: var(--pl-card-margin-r);
  bottom: 0;
  width: calc(var(--pl-card-w) + var(--pl-card-margin-l));
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  overflow: hidden;
  padding: 0 0 0 var(--pl-card-margin-l);
  z-index: 2;
}

#login .pl-form-card {
  --pl-card-pad-y: clamp(20px, 4vh, 44px);
  --pl-card-pad-x: clamp(20px, 2.8vw, 36px);
  --pl-gap-sm: clamp(8px, 1.2vh, 12px);
  --pl-gap-md: clamp(12px, 2vh, 22px);
  --pl-gap-lg: clamp(16px, 2.8vh, 28px);
  width: 100%;
  max-height: 100%;
  background: #fff;
  border-radius: clamp(14px, 2vmin, 20px);
  border: 1px solid rgba(30, 80, 180, 0.08);
  box-shadow:
    0 20px 56px rgba(30, 80, 180, 0.12),
    0 8px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex-shrink: 1;
}

#login .pl-right-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pl-card-pad-y) var(--pl-card-pad-x);
  overflow: hidden;
  min-height: 0;
  max-height: 100%;
  flex: 1;
}

#login .pl-shield-wrap {
  width: clamp(56px, 9vmin, 76px);
  height: clamp(56px, 9vmin, 76px);
  background: linear-gradient(145deg, #1043b0, #0ea5e9);
  border-radius: clamp(18px, 3vmin, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--pl-gap-md);
  box-shadow: 0 10px 32px rgba(16, 67, 176, 0.3), 0 0 0 6px rgba(16, 67, 176, 0.08);
  position: relative;
  font-size: clamp(22px, 3.5vmin, 28px);
  color: #fff;
  flex-shrink: 1;
  min-height: 0;
}

#login .pl-shield-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(16, 67, 176, 0.12), transparent 70%);
  z-index: -1;
}

#login .pl-form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(16px, 2.4vh, 23px);
  font-weight: 900;
  color: #0a1f5c;
  text-align: center;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: clamp(4px, 0.8vh, 6px);
  flex-shrink: 1;
}

#login .pl-form-sub {
  font-size: clamp(11.5px, 1.6vh, 13px);
  color: #64748b;
  text-align: center;
  margin-bottom: var(--pl-gap-lg);
  flex-shrink: 1;
}

#login .pl-field {
  position: relative;
  margin-bottom: var(--pl-gap-sm);
  flex-shrink: 1;
  min-height: 0;
}

#login .pl-field-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  z-index: 2;
  pointer-events: none;
  transition: color 0.2s;
}

#login .pl-field:focus-within .pl-field-icon {
  color: #1043b0;
}

#login .pl-input {
  width: 100%;
  height: clamp(40px, 5.5vh, 50px);
  background: #f8faff;
  border: 1.5px solid #e2e8f0;
  border-radius: clamp(10px, 1.6vh, 13px);
  padding: 0 14px 0 44px;
  font-size: clamp(12.5px, 1.7vh, 13.5px);
  color: #1e293b;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

#login .pl-input::placeholder {
  color: #a0aec0;
}

#login .pl-input:focus {
  border-color: #1043b0;
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(16, 67, 176, 0.1);
}

#login .pl-field-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  transition: color 0.2s;
}

#login .pl-field-toggle:hover {
  color: #1043b0;
}

#login .pl-row-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: var(--pl-gap-sm);
  flex-shrink: 1;
}

#login .pl-forgot {
  font-size: clamp(11.5px, 1.6vh, 13px);
  font-weight: 700;
  color: #1043b0;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

#login .pl-forgot:hover {
  color: #0284c7;
  text-decoration: underline;
}

#login .pl-btn-login {
  width: 100%;
  height: clamp(42px, 5.8vh, 52px);
  background: linear-gradient(135deg, #1043b0 0%, #1d6fe8 100%);
  border: none;
  border-radius: clamp(11px, 1.8vh, 14px);
  color: #fff;
  font-size: clamp(13px, 1.9vh, 15px);
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(16, 67, 176, 0.35);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: var(--pl-gap-md);
  flex-shrink: 1;
}

#login .pl-btn-login:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16, 67, 176, 0.4);
}

#login .pl-btn-login:active {
  transform: translateY(0);
}

#login .pl-helpdesk {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vh, 14px);
  background: #f8faff;
  border: 1px solid rgba(16, 67, 176, 0.1);
  border-radius: clamp(10px, 1.6vh, 13px);
  padding: clamp(10px, 1.6vh, 14px) clamp(12px, 1.8vh, 16px);
  margin-top: 0;
  flex-shrink: 1;
  min-height: 0;
}

#login .pl-helpdesk-icon {
  width: clamp(32px, 5vmin, 38px);
  height: clamp(32px, 5vmin, 38px);
  background: linear-gradient(135deg, #e8f0fe, #dbeafe);
  border-radius: clamp(9px, 1.5vh, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(13px, 2vmin, 15px);
  color: #1043b0;
  flex-shrink: 0;
}

#login .pl-helpdesk-ask {
  font-size: clamp(10px, 1.4vh, 11px);
  color: #94a3b8;
  margin-bottom: 1px;
}

#login .pl-helpdesk-name {
  font-size: clamp(10.5px, 1.5vh, 12px);
  font-weight: 700;
  color: #334155;
}

#login .pl-helpdesk-phone {
  font-size: clamp(12px, 1.7vh, 14px);
  font-weight: 800;
  color: #1043b0;
}

#login .pl-register-row {
  text-align: center;
  margin-top: clamp(10px, 1.8vh, 18px);
  font-size: clamp(10.5px, 1.5vh, 12px);
  color: #64748b;
  flex-shrink: 1;
}

#login .pl-register-row a {
  font-weight: 700;
  margin-left: 4px;
}

#login .pl-captcha-wrap {
  margin-bottom: 14px;
  flex-shrink: 0;
}

#login .pl-captcha-wrap .pl-captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

#login .pl-captcha-wrap img#captcha {
  flex: 0 0 auto;
  max-width: 45%;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  cursor: pointer;
}

#login .pl-captcha-wrap .pl-captcha-eq {
  font-size: 18px;
  font-weight: 700;
  color: #94a3b8;
}

#login .pl-captcha-wrap #c {
  flex: 1;
  height: 48px;
  background: #f8faff;
  border: 1.5px solid #e2e8f0;
  border-radius: 13px;
  padding: 0 14px;
  font-size: 13.5px;
  color: #1e293b;
  outline: none;
  font-family: 'Inter', sans-serif;
}

#login .pl-captcha-wrap #c:focus {
  border-color: #1043b0;
  box-shadow: 0 0 0 3px rgba(16, 67, 176, 0.1);
}

/* ── FOOTER ── */
#login .pl-footer {
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(30, 80, 180, 0.08);
  padding: 0 clamp(20px, 3vw, 40px);
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  box-shadow: 0 -2px 16px rgba(30, 80, 180, 0.04);
}

#login .pl-footer-items {
  display: flex;
  align-items: center;
}

#login .pl-footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: clamp(12px, 2vw, 28px);
  margin-right: clamp(12px, 2vw, 28px);
  border-right: 1px solid #e2e8f0;
}

#login .pl-footer-item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

#login .pl-footer-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #e8f0fe, #dbeafe);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #1043b0;
  flex-shrink: 0;
}

#login .pl-footer-text {
  font-size: 11px;
  color: #64748b;
  line-height: 1.35;
}

#login .pl-footer-text strong {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: #334155;
}

#login .pl-footer-copy {
  font-size: 11px;
  color: #94a3b8;
  text-align: right;
  line-height: 1.5;
}

#login input:-webkit-autofill,
#login input:-webkit-autofill:hover,
#login input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #f8faff inset;
  -webkit-text-fill-color: #1e293b;
  transition: background-color 9999s ease-in-out 0s;
}

/* Tablet landscape / narrow desktop — hero sempit, fitur 2 kolom */
@media (max-width: 1180px) and (min-width: 993px) {
  #login .pl-features {
    grid-template-columns: repeat(2, 1fr);
    max-width: min(100%, 400px);
    gap: 10px;
  }

  #login .pl-left-top {
    padding-bottom: 16px;
  }

  #login .pl-scene {
    background-position: 65% center;
  }
}

@media (max-width: 992px) {
  html,
  body {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #login {
    height: auto;
    max-height: none;
    min-height: 100dvh;
    overflow: visible;
  }

  #login .pl-wrapper {
    height: auto;
    max-height: none;
    min-height: 100dvh;
    overflow: visible;
  }

  #login .pl-main {
    display: flex;
    flex-direction: column;
    overflow: visible;
    --pl-card-margin-l: 0;
  }

  #login .pl-left {
    position: relative;
    right: auto;
    min-height: 0;
    flex-shrink: 0;
  }

  #login .pl-left-top {
    padding: clamp(20px, 4vw, 28px) clamp(16px, 4vw, 24px) clamp(16px, 3vw, 24px);
  }

  #login .pl-desc {
    max-width: none;
  }

  #login .pl-right {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 0 clamp(12px, 4vw, 20px) clamp(20px, 4vw, 28px);
    justify-content: center;
    flex-shrink: 0;
  }

  #login .pl-form-card {
    width: min(100%, 480px);
    max-height: none;
    margin: 0 auto;
  }

  #login .pl-right-inner {
    overflow: visible;
    max-height: none;
    justify-content: flex-start;
  }

  #login .pl-features {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    gap: 10px;
  }

  #login .pl-scene {
    background-position: center 75%;
    background-size: cover;
  }

  #login .pl-scene::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.55) 38%,
      rgba(255, 255, 255, 0.15) 72%,
      transparent 100%
    );
  }

  #login .pl-footer {
    height: auto;
    padding: 14px clamp(16px, 4vw, 20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  #login .pl-footer-items {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  #login .pl-footer-item {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    width: 100%;
  }

  #login .pl-footer-copy {
    text-align: left;
    width: 100%;
  }
}

@media (max-width: 640px) {
  #login .pl-nav {
    height: auto;
    min-height: 56px;
    padding: 10px 16px;
  }

  #login .pl-nav-divider,
  #login .pl-logo-sub,
  #login .pl-nav-epro-sub {
    display: none;
  }

  #login .pl-logo-img {
    height: 34px;
  }

  #login .pl-logo-name {
    font-size: 16px;
  }

  #login .pl-nav-epro-title {
    font-size: 13px;
  }

  #login .pl-headline {
    font-size: clamp(22px, 6.5vw, 30px);
    letter-spacing: -0.8px;
  }

  #login .pl-feat {
    padding: 8px 6px;
  }

  #login .pl-feat-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-bottom: 6px;
  }

  #login .pl-feat-title {
    font-size: 11px;
  }

  #login .pl-feat-sub {
    font-size: 9px;
    line-height: 1.3;
  }

  #login .pl-form-card {
    border-radius: 16px;
  }

  #login .pl-right-inner {
    padding: clamp(18px, 4vw, 24px) clamp(16px, 4vw, 20px);
  }
}

@media (max-width: 400px) {
  #login .pl-features {
    gap: 8px;
  }

  #login .pl-feat-sub {
    display: none;
  }

  #login .pl-footer-text strong {
    font-size: 11px;
  }

  #login .pl-footer-text {
    font-size: 10px;
  }
}

@media (max-height: 720px) and (min-width: 993px) {
  #login .pl-feat-sub {
    display: none;
  }

  #login .pl-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #login .pl-scene {
    background-position: 60% center;
  }

  #login .pl-form-card {
    --pl-card-pad-y: clamp(16px, 3vh, 28px);
    --pl-card-pad-x: clamp(18px, 2.5vw, 28px);
    --pl-gap-sm: clamp(6px, 1vh, 10px);
    --pl-gap-md: clamp(8px, 1.5vh, 14px);
    --pl-gap-lg: clamp(10px, 2vh, 18px);
  }
}

/* loader */
#ldr {
  transform: translate(-50%, -50%);
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.5em solid #e1f5fe;
  border-right: 0.5em solid #4fc3f7;
  border-bottom: 0.5em solid #e1f5fe;
  border-left: 0.5em solid #4fc3f7;
  transform: translateZ(0);
  animation: load8 0.75s infinite linear;
}

/* modal */
.lp-modal .modal-dialog { max-width: 420px; }

.lp-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
  font-family: 'Inter', system-ui, sans-serif;
}

.lp-modal-content--error { border-top: 3px solid #ef4444; }

.lp-modal-top {
  position: relative;
  padding: 28px 28px 0;
  text-align: center;
}

.lp-modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1043b0, #0ea5e9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(16, 67, 176, 0.28);
}

.lp-modal-icon--error {
  background: linear-gradient(135deg, #dc2626, #f87171);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25);
}

.lp-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f1f5f9;
  border-radius: 10px;
  color: #64748b;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  padding: 0;
}

.lp-modal-body { padding: 16px 32px 8px; text-align: center; }

.lp-modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
}

.lp-modal-sub {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 20px;
  text-align: left;
}

.lp-modal-message {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  padding: 4px 0 8px;
}

.lp-modal-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #64748b;
  margin: 0 0 6px;
  text-align: left;
}

.lp-modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
}

.lp-modal-divider::before,
.lp-modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.lp-modal .pl-field { margin-bottom: 12px; }

.lp-modal .pl-field-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
}

.lp-modal .pl-field:focus-within .pl-field-icon { color: #1043b0; }

.lp-modal .pl-input {
  width: 100%;
  height: 48px;
  background: #f8faff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 14px 0 42px;
  font-size: 13.5px;
  color: #1e293b;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.lp-modal .pl-input:focus {
  border-color: #1043b0;
  box-shadow: 0 0 0 3px rgba(16, 67, 176, 0.1);
}

.lp-modal .pl-btn-login {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #1043b0, #1d6fe8);
  border: none;
  border-radius: 13px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(16, 67, 176, 0.28);
}

.lp-captcha-wrap--modal { margin-bottom: 4px; }

.lp-captcha-wrap--modal img#rst-captcha {
  flex: 0 0 auto;
  max-width: 42%;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  cursor: pointer;
}

.lp-captcha-wrap--modal #rst-c {
  flex: 1;
  height: 48px;
  background: #f8faff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 13.5px;
  outline: none;
}

.lp-modal-footer {
  border-top: none;
  padding: 12px 32px 28px;
  justify-content: center;
}

.lp-modal-footer--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lp-modal-btn { width: 100%; margin: 0; }

.lp-modal-btn-outline {
  width: 100%;
  height: 48px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 13px;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@keyframes load8 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
