/* GurukulPe student / parent login
   Matches the live student portal login and OTP screens.
   Mobile-first; desktop adapted. Flat UI — no card box-shadow. */

*,
*::before,
*::after {
  box-sizing: border-box;
  box-shadow: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

.gp-pl-body {
  --gp-pl-bg: #F5F7FF;
  --gp-pl-blue: #2457E5;
  --gp-pl-blue-dark: #1535BE;
  --gp-pl-blue-mid: #4B7BF5;
  --gp-pl-blue-light: #EEF2FF;
  --gp-pl-text: #0D1B3E;
  --gp-pl-muted: #7A88AA;
  --gp-pl-border: #E2E8F8;
  --gp-pl-card: #FFFFFF;
  --gp-pl-input: #F7F9FF;
  --gp-pl-danger: #D92D20;
  --gp-pl-radius-s: 8px;
  --gp-pl-radius-m: 12px;
  --gp-pl-radius-l: 16px;
  --gp-pl-radius-xl: 20px;
  --gp-pl-display: Aileron, Inter, "Segoe UI", system-ui, sans-serif;
  --gp-pl-font: "Chakra Petch", Inter, "Segoe UI", system-ui, sans-serif;
  font-family: var(--gp-pl-font);
  background: var(--gp-pl-bg);
  color: var(--gp-pl-text);
  font-size: 15px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: manipulation;
  min-height: 100dvh;
}

.gp-pl {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
}

.gp-pl-hero {
  background: linear-gradient(140deg, #0F2FA8 0%, #1B45D6 45%, #2E63F0 80%, #4B80FF 100%);
  padding: calc(28px + env(safe-area-inset-top, 0px)) 24px 28px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.gp-pl-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.06);
}

.gp-pl-orb-1 {
  width: 200px;
  height: 200px;
  top: -70px;
  right: -50px;
}

.gp-pl-orb-2 {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  bottom: -30px;
  left: -30px;
}

.gp-pl-orb-3 {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.04);
  top: 40px;
  left: 60px;
}

.gp-pl-brand {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.gp-gp-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  max-width: min(360px, 100%);
}

.gp-gp-wordmark img {
  height: 60px;
  width: auto;
  max-width: 330px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.gp-pl-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  overflow: hidden;
}

.gp-pl-logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 6px;
  display: block;
}

.gp-pl-logo iconify-icon {
  font-size: 22px;
  color: #fff;
}

.gp-pl-brand-name {
  font-family: var(--gp-pl-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1;
}

.gp-pl-brand-tag {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.4px;
  margin-top: 2px;
}

.gp-pl-heading {
  font-family: var(--gp-pl-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin: 0 0 4px;
  position: relative;
  z-index: 1;
}

.gp-pl-sub {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

.gp-pl-illus-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.gp-pl-illus {
  background: rgba(255, 255, 255, 0.13);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--gp-pl-radius-xl);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 300px;
  width: 100%;
}

.gp-pl-illus-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gp-pl-illus-ring iconify-icon {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.9);
}

.gp-pl-illus-title {
  font-family: var(--gp-pl-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.gp-pl-illus-desc {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.gp-pl-chips {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.gp-pl-chip {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.gp-pl-sheet {
  flex: 1;
  background: var(--gp-pl-card);
  border-radius: 24px 24px 0 0;
  margin-top: -20px;
  padding: 28px 24px 32px;
  position: relative;
  z-index: 10;
}

.gp-pl-handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--gp-pl-border);
  margin: 0 auto 20px;
}

.gp-pl-form-title {
  font-family: var(--gp-pl-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--gp-pl-text);
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}

.gp-pl-form-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--gp-pl-muted);
  margin: 0 0 24px;
  line-height: 1.45;
}

.gp-pl .gp-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 4px;
  background: var(--gp-pl-blue-light);
  border: 1.5px solid var(--gp-pl-border);
  border-radius: var(--gp-pl-radius-m);
  margin: 0 0 20px;
}

.gp-pl .gp-auth-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--gp-pl-muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 8px;
  border-radius: 9px;
  cursor: pointer;
  letter-spacing: 0.1px;
}

.gp-pl .gp-auth-tab.is-active {
  background: #fff;
  color: var(--gp-pl-blue);
}

.gp-pl [data-auth-panel][hidden] {
  display: none !important;
}

.gp-pl-label,
.gp-pl .gp-al-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gp-pl-muted);
  letter-spacing: 0.4px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.gp-pl .gp-al-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.gp-pl .gp-al-label-row .gp-al-label {
  margin: 0;
}

.gp-pl .gp-al-forgot {
  font-size: 11px;
  font-weight: 700;
  color: var(--gp-pl-blue);
  text-decoration: none;
  white-space: nowrap;
}

.gp-pl .gp-al-field {
  margin: 0 0 16px;
}

.gp-pl .gp-al-input,
.gp-pl .gp-auth-mobile-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gp-pl-border);
  border-radius: var(--gp-pl-radius-m);
  background: var(--gp-pl-input);
  overflow: hidden;
  border-left: 4px solid var(--gp-pl-blue);
  min-height: 52px;
  padding: 0;
}

.gp-pl .gp-al-input:focus-within,
.gp-pl .gp-auth-mobile-row:focus-within {
  border-color: var(--gp-pl-blue);
  border-left-color: var(--gp-pl-blue);
}

.gp-pl .gp-al-input.is-err,
.gp-pl .gp-auth-mobile-row.is-err,
.gp-pl .gp-auth-mobile-row.is-error,
.gp-pl .gp-al-input:has(.axl-invalid),
.gp-pl .gp-auth-mobile-row:has(.axl-invalid) {
  border-color: var(--gp-pl-danger) !important;
  border-left-color: var(--gp-pl-danger) !important;
}

.gp-pl .gp-al-input > img {
  display: none;
}

.gp-pl .gp-al-input > iconify-icon {
  margin-left: 14px;
  font-size: 18px;
  color: var(--gp-pl-muted);
  flex-shrink: 0;
}

.gp-pl .gp-al-input input,
.gp-pl .gp-auth-mobile-row input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--gp-pl-text);
  padding: 14px;
  min-width: 0;
  letter-spacing: 0.04em;
}

.gp-pl .gp-auth-mobile-row input {
  font-size: 18px;
  letter-spacing: 1.5px;
}

.gp-pl .gp-al-input input::placeholder,
.gp-pl .gp-auth-mobile-row input::placeholder {
  color: var(--gp-pl-muted);
  font-weight: 500;
  letter-spacing: 0;
  font-size: 14px;
}

.gp-pl .gp-al-eye {
  appearance: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gp-pl-muted);
  flex-shrink: 0;
  margin-right: 4px;
}

.gp-pl .gp-al-eye img {
  display: none;
}

.gp-pl .gp-al-eye iconify-icon {
  font-size: 18px;
}

.gp-pl .gp-auth-mobile-cc {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 14px 14px 12px;
  border-right: 1.5px solid var(--gp-pl-border);
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--gp-pl-text);
  white-space: nowrap;
}

.gp-pl .gp-auth-mobile-cc .gp-pl-flag {
  font-size: 18px;
  line-height: 1;
}

.gp-pl .gp-al-ferr,
.gp-pl .axl-error {
  margin: 8px 0 0;
  padding: 8px 12px;
  background: #FFF0F0;
  border-radius: var(--gp-pl-radius-s);
  border-left: 3px solid var(--gp-pl-danger);
  font-size: 11px;
  font-weight: 600;
  color: var(--gp-pl-danger);
  display: none;
}

.gp-pl .gp-al-ferr:not(:empty),
.gp-pl .axl-error:not(:empty),
.gp-pl .axl-error.show {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gp-pl-alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: var(--gp-pl-radius-s);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.gp-pl-alert-err {
  background: #FFF0F0;
  border-left: 3px solid var(--gp-pl-danger);
  color: var(--gp-pl-danger);
}

.gp-pl-alert-ok {
  background: #E6FAF0;
  border-left: 3px solid #1A9E5C;
  color: #1A9E5C;
}

.gp-pl .gp-al-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gp-pl-text);
}

.gp-pl .gp-al-remember input {
  width: 16px;
  height: 16px;
  accent-color: var(--gp-pl-blue);
}

.gp-pl .gp-al-submit {
  margin-top: 20px;
  width: 100%;
  height: 54px;
  min-height: 54px;
  border: 0;
  border-radius: var(--gp-pl-radius-m);
  background: linear-gradient(120deg, #1535BE 0%, #2457E5 100%);
  color: #fff;
  font-family: var(--gp-pl-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
}

.gp-pl .gp-al-submit .gp-al-submit-ico {
  display: inline-flex;
  align-items: center;
}

.gp-pl .gp-al-submit iconify-icon {
  font-size: 18px;
  color: currentColor;
}

.gp-pl .gp-al-submit .gp-al-submit-ico img {
  display: none;
}

.gp-pl .gp-al-submit.is-disabled,
.gp-pl .gp-al-submit:disabled {
  background: var(--gp-pl-border);
  color: var(--gp-pl-muted);
  cursor: default;
  pointer-events: none;
  opacity: 1;
}

.gp-pl-otp-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.gp-pl .gp-auth-link-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--gp-pl-blue);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.gp-pl .gp-auth-digits {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: space-between;
  margin: 4px 0 0;
}

.gp-pl .gp-auth-digit {
  flex: 1;
  width: auto;
  min-width: 0;
  height: 52px;
  border: 1.5px solid var(--gp-pl-border);
  border-radius: var(--gp-pl-radius-m);
  background: var(--gp-pl-input);
  text-align: center;
  font-family: var(--gp-pl-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gp-pl-text);
  outline: none;
}

.gp-pl .gp-auth-digit:focus {
  background: #fff;
  border-color: var(--gp-pl-blue);
}

.gp-pl-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.gp-pl-divider::before,
.gp-pl-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gp-pl-border);
}

.gp-pl-divider span {
  font-size: 11px;
  font-weight: 600;
  color: var(--gp-pl-muted);
}

.gp-pl-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}

.gp-pl-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.gp-pl-trust-ico {
  width: 36px;
  height: 36px;
  border-radius: var(--gp-pl-radius-s);
  border: 1.5px solid var(--gp-pl-border);
  background: var(--gp-pl-input);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gp-pl-blue);
}

.gp-pl-trust-ico iconify-icon {
  font-size: 16px;
}

.gp-pl-trust-item span {
  font-size: 10px;
  font-weight: 600;
  color: var(--gp-pl-muted);
}

.gp-pl-legal {
  margin-top: 20px;
  text-align: center;
}

.gp-pl-legal p {
  font-size: 11px;
  font-weight: 500;
  color: var(--gp-pl-muted);
  margin: 0 0 8px;
  line-height: 1.5;
}

.gp-pl-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.gp-pl-legal-links a {
  font-size: 11px;
  font-weight: 600;
  color: var(--gp-pl-blue);
  text-decoration: none;
  white-space: nowrap;
}

.gp-pl-legal-links .sep {
  font-size: 11px;
  color: var(--gp-pl-muted);
}

.gp-pl-staff {
  margin: 16px 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gp-pl-muted);
}

.gp-pl-staff a {
  color: var(--gp-pl-blue);
  text-decoration: none;
  font-weight: 700;
}

.gp-pl .gp-al-demo {
  margin-top: 16px;
}

.gp-pl .gp-al-demo-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--gp-pl-muted);
  margin-bottom: 8px;
  text-align: center;
}

.gp-pl .gp-al-demo-grid {
  display: grid;
  gap: 8px;
}

.gp-pl .gp-al-demo-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1.5px solid var(--gp-pl-border);
  border-radius: var(--gp-pl-radius-m);
  background: var(--gp-pl-input);
  color: var(--gp-pl-text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

/* Account type sheet — Banani tokens */
.gp-pl-body .gp-auth-sheet {
  background: var(--gp-pl-card);
  color: var(--gp-pl-text);
}

.gp-pl-body .gp-auth-sheet-head h2 {
  font-family: var(--gp-pl-display);
}

.gp-pl-body .gp-auth-type-card:hover {
  border-color: var(--gp-pl-blue);
  background: var(--gp-pl-blue-light);
}

.gp-pl-body .gp-auth-type-ico {
  background: linear-gradient(135deg, #1535BE, #2457E5);
}

@media (min-width: 640px) and (max-width: 959px) {
  .gp-pl-body {
    padding: 24px 16px 32px;
  }

  .gp-pl {
    max-width: 430px;
    min-height: auto;
    border: 1.5px solid var(--gp-pl-border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--gp-pl-bg);
  }

  .gp-pl-handle {
    display: none;
  }

  .gp-pl-sheet {
    border-radius: 0;
    margin-top: -20px;
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  body.gp-ov-body {
    padding: 24px 16px 32px;
  }

  .gp-ov {
    max-width: 430px;
    min-height: auto;
    border: 1.5px solid var(--gp-pl-border);
    border-radius: 20px;
    overflow: hidden;
  }
}

/* Desktop shell defaults: aside is hidden until 960px so mobile is unchanged. */
.gp-pl-desk-aside,
.gp-pl-desk-foot {
  display: none;
}

/* ── Desktop: Super Admin split (sidebar + compact card). Mobile unchanged. ── */
@media (min-width: 960px) {
  html:has(.gp-pl-body),
  html:has(.gp-ov-body),
  html:has(.gp-si-body) {
    height: 100%;
    overflow: hidden;
  }

  .gp-pl-body,
  body.gp-ov-body,
  .gp-si-body {
    background: linear-gradient(140deg, #0F2FA8 0%, #1B45D6 45%, #2E63F0 80%, #4B80FF 100%);
    min-height: 100dvh;
    height: 100dvh;
    padding: 0;
    overflow: hidden;
  }

  .gp-pl-desk {
    display: flex;
    min-height: 100dvh;
    height: 100dvh;
    max-height: 100dvh;
    position: relative;
  }

  .gp-pl-desk::before,
  .gp-pl-desk::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.07);
  }

  .gp-pl-desk::before {
    width: 280px;
    height: 280px;
    top: -90px;
    left: 18%;
  }

  .gp-pl-desk::after {
    width: 180px;
    height: 180px;
    bottom: 8%;
    left: 8%;
    background: rgba(255, 255, 255, 0.05);
  }

  .gp-pl-desk-aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    padding: 28px 48px 24px;
    color: #fff;
    position: relative;
    z-index: 1;
  }

  .gp-pl-desk-brand {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    border: 0;
  }

  .gp-pl-desk-brand .gp-gp-wordmark,
  .gp-pl-desk-brand .gp-gp-wordmark img {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
  }

  .gp-pl-desk-brand .gp-gp-wordmark img {
    height: 48px;
    max-width: 240px;
    /* Crop the PNG’s outer white ring so the page logo sits on the gradient, not in a box. */
    clip-path: inset(2px 2px round 11px);
  }

  .gp-pl-desk-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
    max-width: 560px;
  }

  .gp-pl-desk-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 5px 12px;
    margin-bottom: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #fff;
  }

  .gp-pl-desk-pill iconify-icon {
    font-size: 13px;
    color: #fff;
  }

  .gp-pl-desk-title {
    font-family: var(--gp-pl-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.4px;
    color: #fff;
    margin: 0 0 10px;
  }

  .gp-pl-desk-title .hl {
    display: block;
    color: rgba(255, 255, 255, 0.92);
  }

  .gp-pl-desk-sub {
    max-width: 440px;
    margin: 0 0 22px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
  }

  .gp-pl-desk-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 480px;
  }

  .gp-pl-desk-feat {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    min-height: 56px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
  }

  .gp-pl-desk-feat-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    color: #fff;
  }

  .gp-pl-desk-feat-ico iconify-icon {
    font-size: 16px;
    color: #fff;
  }

  .gp-pl-desk-feat-t {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
  }

  .gp-pl-desk-feat-s {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
  }

  .gp-pl-desk-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 520px;
    padding-top: 8px;
  }

  .gp-pl-desk-avatars {
    display: flex;
    align-items: center;
  }

  .gp-pl-desk-avatars img,
  .gp-pl-desk-avatars .more {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #1B45D6;
    object-fit: cover;
    margin-left: -8px;
  }

  .gp-pl-desk-avatars img:first-child,
  .gp-pl-desk-avatars > :first-child {
    margin-left: 0;
  }

  .gp-pl-desk-avatars .more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #1535BE;
    background: #fff;
  }

  .gp-pl-desk-trust-copy strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
  }

  .gp-pl-desk-trust-copy span {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
  }

  .gp-pl-desk-vdiv {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
  }

  .gp-pl-desk-stat {
    text-align: center;
  }

  .gp-pl-desk-stat b {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
  }

  .gp-pl-desk-stat span {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
  }

  .gp-pl-desk-stage {
    width: min(340px, 36vw);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }

  .gp-pl-desk-stage .gp-pl,
  .gp-pl-desk-stage .gp-ov,
  .gp-pl-desk-stage .gp-si {
    position: relative;
    width: 100%;
    max-width: 320px;
    min-height: 0;
    height: auto;
    max-height: none;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 0;
    border-radius: 18px;
  }

  /* Hairline only: white fades on the blue header, navy whisper on the white sheet. No drop-shadow. */
  .gp-pl-desk-stage .gp-pl::after,
  .gp-pl-desk-stage .gp-ov::after,
  .gp-pl-desk-stage .gp-si::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 30;
    border-radius: inherit;
    pointer-events: none;
    padding: 1px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0) 28%,
      rgba(12, 32, 96, 0.05) 72%,
      rgba(12, 32, 96, 0.08) 100%
    );
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }

  .gp-pl-desk-stage .gp-pl-hero,
  .gp-pl-desk-stage .gp-ov-hero,
  .gp-pl-desk-stage .gp-si-hero {
    background: linear-gradient(140deg, #0C2896 0%, #163CC8 45%, #2654E0 80%, #3A6CF0 100%);
  }

  .gp-pl-desk-stage .gp-pl-handle,
  .gp-pl-desk-stage .gp-si-handle {
    display: none;
  }

  .gp-pl-desk-stage .gp-pl-hero {
    padding: 12px 16px 14px;
  }

  .gp-pl-desk-stage .gp-gp-wordmark img {
    height: 36px;
    max-width: 180px;
  }

  .gp-pl-desk-stage .gp-pl-heading {
    font-size: 16px;
  }

  .gp-pl-desk-stage .gp-pl-sub {
    font-size: 11px;
  }

  .gp-pl-desk-stage .gp-pl-sheet {
    margin-top: -14px;
    padding: 14px 16px 12px;
    flex: none;
  }

  .gp-pl-desk-stage .gp-pl-form-title {
    font-size: 14px;
  }

  .gp-pl-desk-stage .gp-pl-form-sub {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .gp-pl-desk-stage .gp-pl .gp-auth-tabs {
    margin-bottom: 8px;
    padding: 3px;
  }

  .gp-pl-desk-stage .gp-pl .gp-auth-tab {
    padding: 7px 6px;
    font-size: 12px;
  }

  .gp-pl-desk-stage .gp-pl .gp-al-field {
    margin-bottom: 8px;
    margin-top: 0;
  }

  .gp-pl-desk-stage .gp-pl .gp-al-label,
  .gp-pl-desk-stage .gp-pl .gp-al-label-row {
    margin-bottom: 5px;
  }

  .gp-pl-desk-stage .gp-pl .gp-al-input,
  .gp-pl-desk-stage .gp-pl .gp-auth-mobile-row {
    min-height: 40px;
  }

  .gp-pl-desk-stage .gp-pl .gp-al-input input,
  .gp-pl-desk-stage .gp-pl .gp-auth-mobile-row input {
    padding: 9px 12px;
    font-size: 14px;
  }

  .gp-pl-desk-stage .gp-pl .gp-al-remember {
    margin-top: 8px;
  }

  .gp-pl-desk-stage .gp-pl .gp-al-submit {
    margin-top: 10px;
    height: 40px;
    min-height: 40px;
    font-size: 14px;
  }

  .gp-pl-desk-stage .gp-pl-divider {
    margin: 10px 0 8px;
  }

  .gp-pl-desk-stage .gp-pl-trust {
    gap: 8px;
    margin-top: 0;
  }

  .gp-pl-desk-stage .gp-pl-trust-ico {
    width: 26px;
    height: 26px;
  }

  .gp-pl-desk-stage .gp-pl-trust-ico iconify-icon {
    font-size: 13px;
  }

  .gp-pl-desk-stage .gp-pl-legal {
    margin-top: 8px;
  }

  .gp-pl-desk-stage .gp-pl-legal p,
  .gp-pl-desk-stage .gp-pl-legal-links a {
    font-size: 10px;
  }

  .gp-pl-desk-stage .gp-pl-staff {
    margin-top: 8px;
    font-size: 11px;
  }

  .gp-pl-desk-stage .gp-ov,
  .gp-pl-desk-stage .gp-si {
    min-height: 0;
  }

  .gp-pl-desk-stage .gp-ov-hero {
    padding: 14px 18px 16px;
  }

  .gp-pl-desk-stage .gp-ov-main {
    padding: 16px 18px 16px;
  }

  .gp-pl-desk-stage .gp-ov-digits-wrap .gp-auth-digit {
    height: 46px;
  }

  .gp-pl-desk-stage .gp-ov-submit {
    min-height: 46px;
    padding: 12px 18px;
  }

  .gp-pl-desk-stage .gp-si-hero {
    padding: 16px 18px 18px;
  }

  .gp-pl-desk-stage .gp-si-sheet {
    margin-top: -16px;
    padding: 16px 18px 16px;
  }
}

@media (min-width: 960px) and (max-width: 1100px) {
  .gp-pl-desk-aside {
    padding: 20px 22px 16px;
  }

  .gp-pl-desk-stage {
    width: min(320px, 40vw);
    padding: 8px 14px;
  }

  .gp-pl-desk-trust {
    display: none;
  }
}

@media (min-width: 960px) and (max-height: 640px) {
  .gp-pl-desk-aside {
    padding: 16px 32px 12px;
  }

  .gp-pl-desk-hero {
    padding: 8px 0;
  }

  .gp-pl-desk-stage .gp-pl-hero {
    padding: 10px 14px 12px;
  }

  .gp-pl-desk-stage .gp-pl-sheet {
    padding: 12px 14px 10px;
  }

  .gp-pl-desk-stage .gp-pl-trust,
  .gp-pl-desk-stage .gp-pl-divider {
    display: none;
  }
}

/* ── OTP Verification (Banani visual; 6 boxes always fit — no overflow) ── */
.gp-ov-body {
  background: var(--gp-pl-bg);
}

.gp-ov {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
}

.gp-ov-hero {
  background: linear-gradient(140deg, #0F2FA8 0%, #1B45D6 45%, #2E63F0 80%, #4B80FF 100%);
  padding: calc(18px + env(safe-area-inset-top, 0px)) 20px 18px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.gp-ov-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.07);
}

.gp-ov-orb-1 {
  width: 200px;
  height: 200px;
  top: -80px;
  right: -60px;
}

.gp-ov-orb-2 {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  bottom: -30px;
  left: 10px;
}

.gp-ov-orb-3 {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.06);
  top: 30px;
  right: 80px;
}

.gp-ov-back-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.gp-ov-back-row form {
  margin: 0;
}

.gp-ov-back {
  width: 36px;
  height: 36px;
  border-radius: var(--gp-pl-radius-s);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  padding: 0;
}

.gp-ov-back iconify-icon {
  font-size: 18px;
  color: #fff;
}

.gp-ov-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex: 1;
}

.gp-ov-brand .gp-gp-wordmark img {
  height: 54px;
  max-width: 300px;
}

.gp-ov-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  color: #fff;
}

.gp-ov-logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 5px;
  display: block;
}

.gp-ov-logo iconify-icon {
  font-size: 18px;
  color: #fff;
}

.gp-ov-hero-body {
  position: relative;
  z-index: 2;
}

.gp-ov-hero-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gp-ov-hero-copy {
  min-width: 0;
  flex: 1;
}

.gp-ov-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
}

.gp-ov-ring iconify-icon {
  font-size: 22px;
  color: #fff;
}

.gp-ov-title {
  font-family: var(--gp-pl-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.gp-ov-sub {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
  margin: 4px 0 0;
}

.gp-ov-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 6px 8px 6px 14px;
  margin-top: 14px;
  max-width: 100%;
}

.gp-ov-badge iconify-icon {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.gp-ov-badge-num {
  font-family: var(--gp-pl-display);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gp-ov-badge form {
  margin: 0;
  flex-shrink: 0;
}

.gp-ov-change {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  border-radius: 20px;
  padding: 2px 8px;
  cursor: pointer;
  font-family: inherit;
}

.gp-ov-main {
  flex: 1;
  padding: 28px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
}

.gp-ov-alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 16px;
  padding: 10px 12px;
  background: #FFF1F2;
  border-radius: var(--gp-pl-radius-s);
  border-left: 3px solid #E11D48;
  color: #E11D48;
  font-size: 12px;
  font-weight: 600;
}

.gp-ov-alert iconify-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.gp-ov-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gp-pl-muted);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.gp-ov-form {
  margin: 0;
}

/* Six equal columns that always fit the row. Banani used 60px fixed boxes (overflow). */
.gp-ov-digits-wrap {
  width: 100%;
  margin-bottom: 8px;
}

.gp-ov-digits-wrap .gp-auth-digits {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(6px, 2vw, 10px);
  width: 100%;
  margin: 0;
  flex-wrap: nowrap;
  justify-content: stretch;
}

.gp-ov-digits-wrap .gp-auth-digits > input[type="hidden"],
.gp-ov-digits-wrap .gp-auth-digits > input[data-digit-target] {
  display: none !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  pointer-events: none;
}

.gp-ov-digits-wrap .gp-auth-digit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: none;
  flex: none;
  height: 56px;
  padding: 0;
  border: 2px solid var(--gp-pl-border);
  border-radius: var(--gp-pl-radius-m);
  background: var(--gp-pl-card);
  font-family: var(--gp-pl-display);
  font-size: clamp(18px, 5.6vw, 26px);
  font-weight: 800;
  color: var(--gp-pl-text);
  text-align: center;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  caret-color: var(--gp-pl-blue);
}

.gp-ov-digits-wrap .gp-auth-digit.is-filled {
  border-color: var(--gp-pl-blue);
  background: var(--gp-pl-blue-light);
  border-left-width: 4px;
}

.gp-ov-digits-wrap .gp-auth-digit:focus {
  border-color: var(--gp-pl-blue);
  background: var(--gp-pl-card);
  outline: 3px solid rgba(36, 87, 229, 0.16);
  outline-offset: 0;
}

.gp-ov-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0 0;
}

.gp-ov-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.gp-ov-timer-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gp-pl-blue-light);
  border: 2px solid #D6E4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gp-pl-blue);
}

.gp-ov-timer-ring iconify-icon {
  font-size: 16px;
}

.gp-ov-timer-text {
  font-family: var(--gp-pl-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--gp-pl-blue);
}

.gp-ov-timer-hint {
  font-size: 12px;
  font-weight: 500;
  color: var(--gp-pl-muted);
}

.gp-ov-resend-form {
  margin: 0;
  flex-shrink: 0;
}

.gp-ov-resend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gp-pl-bg);
  border: 1.5px solid var(--gp-pl-border);
  border-radius: var(--gp-pl-radius-m);
  padding: 8px 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--gp-pl-muted);
}

.gp-ov-resend:disabled {
  cursor: default;
  opacity: 0.7;
}

.gp-ov-resend.is-ready {
  background: var(--gp-pl-blue-light);
  border-color: #D6E4FF;
  color: var(--gp-pl-blue);
}

.gp-ov-resend iconify-icon {
  font-size: 13px;
}

.gp-ov-auto {
  display: flex;
  justify-content: center;
  margin: 16px 0 12px;
}

.gp-ov-auto-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F0FDF4;
  border: 1.5px solid #BBF7D0;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #16A34A;
}

.gp-ov-auto-chip iconify-icon {
  font-size: 12px;
}

.gp-ov-help {
  background: var(--gp-pl-card);
  border: 1.5px solid var(--gp-pl-border);
  border-left: 4px solid var(--gp-pl-blue);
  border-radius: var(--gp-pl-radius-m);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.gp-ov-help-ico {
  width: 32px;
  height: 32px;
  border-radius: var(--gp-pl-radius-s);
  background: var(--gp-pl-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gp-pl-blue);
}

.gp-ov-help-ico iconify-icon {
  font-size: 16px;
}

.gp-ov-help-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gp-pl-text);
  margin: 0 0 3px;
}

.gp-ov-help-desc {
  font-size: 11px;
  font-weight: 500;
  color: var(--gp-pl-muted);
  line-height: 1.5;
  margin: 0;
}

.gp-ov-submit {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 16px 24px;
  min-height: 54px;
  background: linear-gradient(135deg, #1535BE 0%, #2457E5 100%);
  color: #fff;
  font-family: var(--gp-pl-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.gp-ov-submit iconify-icon {
  font-size: 20px;
  color: #fff;
}

.gp-ov-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.gp-ov-divider::before,
.gp-ov-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gp-pl-border);
}

.gp-ov-divider span {
  font-size: 11px;
  font-weight: 600;
  color: var(--gp-pl-muted);
  white-space: nowrap;
}

.gp-ov-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gp-pl-muted);
}

.gp-ov-foot a {
  font-weight: 700;
  color: var(--gp-pl-blue);
  text-decoration: none;
}

.gp-ov-foot .sep {
  color: var(--gp-pl-border);
}
