/* ============================================================
   Pratibha Mandir — Premium Login Page
   login-pratibha.css
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --pm-green-deep:    #0f5010;
  --pm-green-mid:     #1a6e1a;
  --pm-green-light:   #2a9432;
  --pm-green-bg:      #082808;
  --pm-saffron:       #A03000;
  --pm-gold:          #c8941a;
  --pm-gold-light:    #e8c060;
  --pm-gold-pale:     #f7e8c0;
  --pm-cream:         #fffdf5;
  --pm-cream-dark:    #f5eed8;
  --pm-card-bg:       #fffef8;
  --pm-text-dark:     #1a1a1a;
  --pm-text-mid:      #4a4a4a;
  --pm-text-muted:    #7a7a7a;
  --pm-border:        #e0d4b8;
  --pm-border-focus:  #c8941a;
  --pm-error:         #dc2626;
  --pm-success:       #16a34a;
  --pm-white:         #ffffff;
  --pm-shadow-card:   0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --pm-shadow-btn:    0 4px 16px rgba(15,80,16,0.35);
  --pm-shadow-input:  0 0 0 3px rgba(200,148,26,0.15);
  --pm-radius-card:   1.25rem;
  --pm-radius-btn:    0.65rem;
  --pm-radius-input:  0.65rem;
  --pm-font-body:     'Poppins', sans-serif;
  --pm-font-display:  'Lora', serif;
  --pm-transition:    all 0.22s ease;
}

/* ── Reset / Base ───────────────────────────────────────────── */
/* .pm-page *,
.pm-page *::before,
.pm-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
} */

/* ── Page Wrapper ───────────────────────────────────────────── */
.pm-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--pm-font-body);
  overflow-x: hidden;
}

/* ── Main Split ─────────────────────────────────────────────── */
.pm-main {
  flex: 1;
  display: flex;
  min-height: calc(100vh - 76px);
  background-image: url(../login-img/login-4.png);
  background-size: cover;
  background-position: top -50px center;
  background-repeat: no-repeat;
  position: relative;
}

/* ============================================================
   LEFT PANEL
   ============================================================ */
.pm-left {
  flex: 0 0 58%;
  position: relative; 
  overflow: hidden;
}

/* Layered gradient overlay for depth and readability */
.pm-left-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 0;
  display: none;
}

/* Inner layout */
.pm-left-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2.75rem 2.25rem;
}

/* ── Top Bar ─────────────────────────────────────────────────── */
.pm-topbar {
  text-align: center;
}

.pm-logo {
  height: 7rem;
  width: auto;
  object-fit: contain;
 
}

.pm-brand {
  display: flex;
  flex-direction: column;
}

.pm-brand-name {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--pm-white);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

.pm-brand-tagline {
  font-size: 0.58rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* ── Hero Block ──────────────────────────────────────────────── */
.pm-hero {
  text-align: center;
  padding: 0 0.5rem;
}

.pm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,148,26,0.18);
  border: 1px solid rgba(200,148,26,0.4);
  backdrop-filter: blur(4px);
  border-radius: 2rem;
  padding: 0.3rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pm-gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.pm-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pm-gold-light);
  animation: pm-pulse 2s ease-in-out infinite;
}

.pm-hero-title {
  font-family: var(--pm-font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--pm-green-deep);
  line-height: 1.08;
  margin-bottom: 0.35rem;
}

.pm-hero-subtitle {
    font-family: var(--pm-font-display);
    font-style: italic;
    font-size: 1.5rem;
    color: #000;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.pm-divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.55rem 0 0.75rem;
}

.pm-divider-line {
  height: 1.5px;
  width: 125px;
  background: linear-gradient(to right, transparent, var(--pm-gold) 70%, transparent);
}

.pm-divider-line-rev {
  height: 1.5px;
  width: 125px;
  background: linear-gradient(to left, transparent, var(--pm-gold) 70%, transparent);
}

.pm-divider-lotus img {
  height: 42px;
}
.small .pm-divider-line{
width: 65px;
height: 1px;
}
.small .pm-divider-line-rev{
width: 65px;
height: 1px;
}
.small .pm-divider-lotus img {
  height: 24px;
}

.pm-hero-quote {
    font-family: var(--pm-font-display);
    font-size: 1.1rem;
    color: var(--pm-saffron);
    letter-spacing: 0.02em;
    font-weight: 600;
}

/* ── Feature List ────────────────────────────────────────────── */
.pm-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.pm-feature-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pm-feature-check {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(42,148,50,0.25);
  border: 1.5px solid rgba(42,148,50,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: #7af07a;
}

.pm-feature-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  line-height: 1.3;
}

.pm-feature-text-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

/* ── Stats Row ───────────────────────────────────────────────── */
.pm-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.pm-stat {
  text-align: center;
}

.pm-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--pm-gold-light);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.pm-stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

/* ── Trophies ────────────────────────────────────────────────── */
.pm-trophies {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.pm-trophy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pm-trophy-circle {
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f7e07a 0%, #c8941a 45%, #7a5808 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow:
    0 4px 20px rgba(0,0,0,0.55),
    0 0 20px rgba(200,148,26,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  border: 2px solid rgba(255,210,80,0.4);
  transition: var(--pm-transition);
}

.pm-trophy:hover .pm-trophy-circle {
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.6),
    0 0 28px rgba(200,148,26,0.45),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.pm-trophy-label {
  background: var(--pm-green-deep);
  color: var(--pm-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--pm-font-body);
  padding: 0.18rem 0.85rem;
  border-radius: 4px;
  border: 1px solid var(--pm-gold);
  letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* ============================================================
   RIGHT PANEL
   ============================================================ */
.pm-right {
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}



/* ── Card ────────────────────────────────────────────────────── */
.pm-card {
  width: 100%;
  max-width: 450px;
  background: var(--pm-card-bg);
  border-radius: 6px;
  padding: 1rem 1.1rem 1.2rem;
  border: 1.5px solid rgba(200,148,26,0.22);
  box-shadow: var(--pm-shadow-card);
  position: relative;
  animation: pm-card-in 0.45s ease both;
}
.pm-card.register-card{
max-width: 550px;
}

/* Corner bracket ornaments */
.pm-card-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  opacity: 0.55;
}

.pm-card-corner-tl {
  top: 7px;
  left: 7px;
  border-top: 2.5px solid var(--pm-gold);
  border-left: 2.5px solid var(--pm-gold);
  border-radius: 3px 0 0 0;
}

.pm-card-corner-tr {
  top: 7px;
  right: 7px;
  border-top: 2.5px solid var(--pm-gold);
  border-right: 2.5px solid var(--pm-gold);
  border-radius: 0 3px 0 0;
}

.pm-card-corner-bl {
  bottom: 7px;
  left: 7px;
  border-bottom: 2.5px solid var(--pm-gold);
  border-left: 2.5px solid var(--pm-gold);
  border-radius: 0 0 0 3px;
}

.pm-card-corner-br {
  bottom: 7px;
  right: 7px;
  border-bottom: 2.5px solid var(--pm-gold);
  border-right: 2.5px solid var(--pm-gold);
  border-radius: 0 0 3px 0;
}

/* ── Language Toggle ─────────────────────────────────────────── */
.pm-lang-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}

.pm-lang-pill {
  display: flex;
  background: var(--pm-cream-dark);
  border-radius: 2rem;
  padding: 3px;
  gap: 2px;
  border: 1px solid var(--pm-border);
}

.pm-lang-btn {
  padding: 3px 14px;
  border-radius: 2rem;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--pm-font-body);
  color: var(--pm-text-muted);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: var(--pm-transition);
  letter-spacing: 0.04em;
}

.pm-lang-btn-active {
  background: var(--pm-saffron);
  color: var(--pm-white);
  box-shadow: 0 1px 6px rgba(197,64,16,0.3);
}

/* ── Card Header ─────────────────────────────────────────────── */
.pm-card-icon {
  text-align: center;
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.pm-card-title {
    font-family: var(--pm-font-display);
    font-size: 2.45rem;
    font-weight: 700;
    color: #a03000;
    text-align: center;
    margin-bottom: 1.15rem;
    line-height: 1.2;
    margin-top: 2rem;
}

.pm-card-title-lms {
  color: var(--pm-text-dark);
}

.pm-card-welcome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
}

.pm-card-welcome-line {
  display: block;
  height: 1px;
  width: 34px;
  background: var(--pm-gold);
  opacity: 0.7;
  flex-shrink: 0;
}

.pm-card-sub {
  text-align: center;
  font-size: 0.8rem;
  color: var(--pm-text-muted);
  margin-bottom: 1.3rem;
  font-weight: 400;
}

/* ── Form ────────────────────────────────────────────────────── */
.pm-form-group {
  margin-bottom: 0.9rem;
}

.pm-form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pm-text-mid);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.pm-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--pm-border);
  border-radius: var(--pm-radius-input);
  background: var(--pm-white);
  overflow: hidden;
  transition: var(--pm-transition);
}

.pm-input-wrap:focus-within {
  border-color: var(--pm-border-focus);
  box-shadow: var(--pm-shadow-input);
}

.pm-input-wrap-error {
  border-color: var(--pm-error);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.pm-input-icon {
  padding: 0 0.8rem;
  color: #bbb;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.pm-input-icon-active {
  color: var(--pm-gold);
}

.pm-input-field {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  padding: 0.75rem 0.5rem 0.75rem 0;
  color: var(--pm-text-dark);
  font-family: var(--pm-font-body);
  min-width: 0;
}

.pm-input-field::placeholder {
  color: #c0b8a8;
  font-weight: 400;
}

.pm-input-cc {
  border: none;
  border-right: 1px solid var(--pm-border);
  background: var(--pm-cream-dark);
  padding: 0.75rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pm-text-mid);
  outline: none;
  max-width: 52px;
  font-family: var(--pm-font-body);
  flex-shrink: 0;
}

.pm-input-action {
  background: none;
  border: none;
  padding: 0 0.8rem;
  color: #bbb;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.2s;
  line-height: 1;
}

.pm-input-action:hover {
  color: var(--pm-text-mid);
}

/* ── School UDISE search combobox ───────────────────────────────── */
.pm-school-combobox {
  position: relative;
}

.pm-school-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 30;
  max-height: 260px;
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: var(--pm-white);
  border: 1.5px solid var(--pm-border);
  border-radius: var(--pm-radius-input);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.pm-school-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.45rem;
  cursor: pointer;
  transition: background 0.15s;
}

.pm-school-dropdown-item:hover,
.pm-school-dropdown-item[aria-selected="true"] {
  background: var(--pm-cream-dark);
}

.pm-school-dropdown-name {
  font-size: 0.82rem;
  color: var(--pm-text-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pm-school-dropdown-code {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pm-gold);
  background: var(--pm-cream-dark);
  padding: 0.15rem 0.45rem;
  border-radius: 0.4rem;
}

.pm-school-dropdown-empty {
  padding: 0.6rem 0.7rem;
  font-size: 0.78rem;
  color: var(--pm-text-muted);
}

/* ── Error / Helper text ─────────────────────────────────────── */
.pm-field-error {
  font-size: 0.75rem;
  color: var(--pm-error);
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.pm-api-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  padding: 0.6rem 0.8rem;
  font-size: 0.8rem;
  color: var(--pm-error);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Remember Me + Forgot ────────────────────────────────────── */
.pm-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.pm-remember {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.pm-remember-checkbox {
  width: 1rem;
  height: 1rem;
  border: 1.5px solid var(--pm-border);
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background: var(--pm-white);
  flex-shrink: 0;
  position: relative;
  transition: var(--pm-transition);
}

.pm-remember-checkbox:checked {
  background: var(--pm-green-deep);
  border-color: var(--pm-green-deep);
}

.pm-remember-checkbox:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--pm-white);
  font-weight: 800;
}

.pm-remember-label {
  font-size: 0.78rem;
  color: var(--pm-text-mid);
  font-weight: 400;
  user-select: none;
}

.pm-forgot-link {
  font-size: 0.78rem;
  color: var(--pm-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.pm-forgot-link:hover {
  color: var(--pm-saffron);
  text-decoration: underline;
}

/* ── Primary Login Button ────────────────────────────────────── */
.pm-btn-login {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--pm-saffron);
  color: var(--pm-white);
  border: none;
  border-radius: var(--pm-radius-btn);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--pm-font-body);
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: var(--pm-shadow-btn);
  transition: var(--pm-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.pm-btn-login::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}

.pm-btn-login:hover:not(:disabled)::before {
  background: rgba(255,255,255,0.06);
}

.pm-btn-login:hover:not(:disabled) {
  box-shadow: 0 6px 22px rgba(15,80,16,0.45);
  transform: translateY(-1px);
}

.pm-btn-login:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: var(--pm-shadow-btn);
}

.pm-btn-login:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
}

/* ── Divider (या / OR) ───────────────────────────────────────── */
.pm-or-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.pm-or-line {
  flex: 1;
  height: 1px;
  background: var(--pm-border);
}

.pm-or-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pm-saffron);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

/* ── Social Login Buttons ────────────────────────────────────── */
.pm-social-row {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.pm-btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.68rem 0.5rem;
  border-radius: var(--pm-radius-btn);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--pm-font-body);
  cursor: pointer;
  transition: var(--pm-transition);
  text-decoration: none;
  border: 1.5px solid var(--pm-border);
  background: var(--pm-white);
  color: var(--pm-text-dark);
}

.pm-btn-social:hover {
  background: var(--pm-cream-dark);
  border-color: #c0b8a8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pm-btn-social-google .pm-social-icon {
  color: #db4437;
}

.pm-btn-social-mobile .pm-social-icon {
  color: var(--pm-green-deep);
}

/* ── Register Link ───────────────────────────────────────────── */
.pm-register-row {
    text-align: center;
    font-size: 1rem;
    color: #000;
    margin-top: 0.25rem;
    border: 1px solid var(--pm-saffron);
    padding: 0.8rem;
    border-radius: 8px;
}

.pm-register-link {
  color: var(--pm-saffron);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.pm-register-link:hover {
  color: var(--pm-green-deep);
  text-decoration: underline;
}

/* ── Trust Badges ────────────────────────────────────────────── */
.pm-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--pm-cream-dark);
  flex-wrap: wrap;
}

.pm-trust-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  color: var(--pm-text-muted);
  font-weight: 500;
}

.pm-trust-icon {
  color: var(--pm-green-deep);
  font-size: 0.75rem;
}

/* ============================================================
   BOTTOM STRIP
   ============================================================ */
.pm-strip {
  background: rgba(6, 28, 6, 0.96);
  border-top: 1px solid rgba(200,148,26,0.2);
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.pm-strip-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--pm-white);
  padding: 0.35rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.pm-strip-item:last-child {
  border-right: none;
}

.pm-strip-icon {
  font-size: 1.45rem;
  flex-shrink: 0;
}
.pm-strip-icon img {
    height: 22px;
    width: 22px !important;
    object-fit: contain;
}

.pm-strip-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pm-white);
  line-height: 1.3;
  font-family: var(--pm-font-body);
}

.pm-strip-desc {
  font-size: 0.65rem;
  color: rgba(200,200,160,0.8);
  line-height: 1.3;
  font-family: var(--pm-font-body);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pm-card-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 991px)
   ============================================================ */
@media (max-width: 991px) {
  .pm-main {
    flex-direction: column;
    min-height: unset;
    background-position: top center;
  }

  .pm-left {
    flex: none;
    min-height: 46vw;
  }

  .pm-left-inner {
    padding: 1.4rem 2rem 1.6rem;
  }

  .pm-hero-title {
    font-size: 2.75rem;
  }

  .pm-features-list {
    display: none;
  }

  .pm-stats {
    display: none;
  }

  .pm-trophy-circle {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.6rem;
  }

  .pm-trophies {
    gap: 2rem;
  }

  .pm-right {
    flex: none;
    padding: 2rem 1.5rem;
  }

  .pm-right-border {
    display: none;
  }

  .pm-strip-item {
    padding: 0.35rem 1.25rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
  .pm-left {
    min-height: 52vw;
  }

  .pm-left-inner {
    padding: 1.1rem 1.5rem 1.4rem;
  }

  .pm-logo {
    height: 2.6rem;
  }

  .pm-brand-name {
    font-size: 0.55rem;
  }

  .pm-hero-badge {
    font-size: 0.62rem;
    padding: 0.25rem 0.75rem;
  }

  .pm-hero-title {
    font-size: 2.1rem;
  }

  .pm-hero-subtitle {
    font-size: 1rem;
  }

  .pm-hero-quote {
    font-size: 0.78rem;
  }

  .pm-trophy-circle {
    width: 3.1rem;
    height: 3.1rem;
    font-size: 1.3rem;
  }

  .pm-trophy-label {
    font-size: 0.7rem;
    padding: 0.15rem 0.6rem;
  }

  .pm-trophies {
    gap: 1.2rem;
  }

  .pm-right {
    padding: 1.5rem 0.85rem;
  }

  .pm-card {
    padding: 1.5rem 1.3rem 1.25rem;
    border-radius: 1rem;
  }

  .pm-card-title {
    font-size: 1.3rem;
  }

  .pm-social-row {
    flex-direction: column;
  }

  .pm-strip {
    padding: 0.75rem 0.5rem;
  }

  .pm-strip-item {
    padding: 0.4rem 0.75rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 50%;
  }

  .pm-strip-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.07);
  }

  .pm-strip-item:last-child,
  .pm-strip-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .pm-left {
    min-height: 60vw;
  }

  .pm-hero-title {
    font-size: 1.75rem;
  }

  .pm-divider-line,
  .pm-divider-line-rev {
    width: 40px;
  }

  .pm-card {
    padding: 1.25rem 1rem 1.1rem;
  }

  .pm-btn-login {
    font-size: 0.95rem;
  }

  .pm-strip-item {
    width: 50%;
    border-right: none;
  }

  .pm-strip-item:nth-child(odd) {
    border-right: none;
  }

  .pm-trust-row {
    gap: 0.6rem;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
/* .pm-btn-login:focus-visible,
.pm-btn-social:focus-visible,
.pm-input-field:focus-visible,
.pm-lang-btn:focus-visible {
  outline:none !important;
}

.pm-remember-checkbox:focus-visible {
  outline: 2px solid var(--pm-gold);
  outline-offset: 2px;
} */

/* ============================================================
   SHARED AUTH PAGE ADDITIONS
   (Register, Forgot, OTP, Reset)
   ============================================================ */

/* Right panel — top-aligned for taller forms (Register) */
.pm-right-top {
  align-items: flex-start;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* 2-column grid for side-by-side fields */
.pm-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.75rem;
}

/* Required field asterisk */
.pm-required {
  color: var(--pm-error);
  margin-left: 2px;
  font-size: 0.7rem;
}

/* Card title with compact top margin (no icon above) */
.pm-card-title-compact {
  margin-top: 0.25rem;
  font-size: 1.65rem;
}

/* Page description text under icon+title */
.pm-page-desc {
  text-align: center;
  font-size: 0.82rem;
  color: var(--pm-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* Identifier info box (OTP page — shows who OTP was sent to) */
.pm-identifier-box {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(200,148,26,0.08);
  border: 1px solid rgba(200,148,26,0.25);
  border-radius: 0.65rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  color: var(--pm-text-mid);
  margin-bottom: 1.25rem;
  word-break: break-all;
}

.pm-identifier-icon {
  color: var(--pm-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.pm-identifier-value {
  font-weight: 600;
  color: var(--pm-text-dark);
}

/* OTP input container */
.pm-otp-wrap {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 0.25rem;
}

/* Override otp-input-react library styles inside pm-card */
.pm-card .otp-input-outer {
  gap: 0.6rem !important;
  justify-content: center !important;
}

.pm-card .otp-input-outer input {
  width: 2.9rem !important;
  height: 3.1rem !important;
  border-radius: 0.65rem !important;
  border: 1.5px solid var(--pm-border) !important;
  background: var(--pm-white) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--pm-text-dark) !important;
  transition: var(--pm-transition) !important;
  outline: none !important;
  text-align: center !important;
  box-shadow: none !important;
}

.pm-card .otp-input-outer input:focus {
  border-color: var(--pm-border-focus) !important;
  box-shadow: var(--pm-shadow-input) !important;
}

/* Resend OTP row */
.pm-resend-row {
  text-align: center;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--pm-text-muted);
}

.pm-resend-btn {
  background: none;
  border: none;
  color: var(--pm-saffron);
  font-weight: 700;
  font-size: 0.82rem;
  font-family: var(--pm-font-body);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color 0.2s;
}

.pm-resend-btn:hover {
  color: var(--pm-green-deep);
}

.pm-resend-btn:disabled {
  color: var(--pm-text-muted);
  cursor: default;
  text-decoration: none;
}

/* Back / navigation link */
.pm-nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--pm-text-muted);
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
  justify-content: center;
  transition: color 0.2s;
}

.pm-nav-link:hover {
  color: var(--pm-saffron);
}

/* Success state banner */
.pm-success-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.65rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.8rem;
  color: var(--pm-success);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Mobile number fixed prefix row */
.pm-mobile-prefix {
  padding: 0.75rem 0.6rem;
  background: var(--pm-cream-dark);
  border-right: 1px solid var(--pm-border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pm-text-mid);
  flex-shrink: 0;
  user-select: none;
}

/* ── Responsive additions ── */
@media (max-width: 767px) {
  .pm-form-grid-2 {
    grid-template-columns: 1fr;
  }

  .pm-right-top {
    align-items: center;
    padding-top: 1.5rem;
  }

  .pm-card .otp-input-outer input {
    width: 2.4rem !important;
    height: 2.7rem !important;
    font-size: 1.05rem !important;
  }

  .pm-card .otp-input-outer {
    gap: 0.4rem !important;
  }
}

@media (max-width: 480px) {
  .pm-card .otp-input-outer input {
    width: 2.1rem !important;
    height: 2.4rem !important;
    font-size: 0.95rem !important;
    border-radius: 0.45rem !important;
  }

  .pm-card .otp-input-outer {
    gap: 0.3rem !important;
  }
}
