/* ── Forgot Password — 3 modal states ──────────────────────────────────── */

.fp-canvas {
  position: fixed;
  inset: 0; z-index: 0;
  pointer-events: none;
  /* No blur — WebGL renders sharp, visible behind card */
}

.fp-shell { gap: 0; }

/* Modals — hidden by default, shown when active */
.fp-modal {
  display: none;
  width: 100%;
  justify-content: center;
}
.fp-modal--active { display: flex; }

/* Animated entrance */
.fp-modal--active .biz-auth-card {
  animation: fpCardIn 0.52s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes fpCardIn {
  from { opacity:0; transform: translateY(20px) scale(0.96); }
  to   { opacity:1; transform: translateY(0)     scale(1);   }
}

/* ── Big icon per modal state ──────────────────────────────────────────── */
.fp-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  animation: fpIconPulse 3s ease-in-out infinite;
}
.fp-icon-wrap svg { width: 38px; height: 38px; }

.fp-icon-wrap--lock {
  background: rgba(167,139,250,0.12);
  border: 0.5px solid rgba(167,139,250,0.25);
  color: #a78bfa;
  box-shadow: 0 0 40px rgba(124,58,237,0.2);
}
.fp-icon-wrap--plane {
  background: rgba(56,189,248,0.1);
  border: 0.5px solid rgba(56,189,248,0.25);
  color: #38bdf8;
  box-shadow: 0 0 40px rgba(56,189,248,0.15);
}
.fp-icon-wrap--shield {
  background: rgba(52,211,153,0.1);
  border: 0.5px solid rgba(52,211,153,0.25);
  color: #34d399;
  box-shadow: 0 0 40px rgba(52,211,153,0.15);
}
@keyframes fpIconPulse {
  0%,100% { transform: scale(1);    box-shadow-intensity: 1; }
  50%     { transform: scale(1.05); }
}

/* ── OTP input row ─────────────────────────────────────────────────────── */
.fp-otp-row {
  display: flex; gap: 10px; justify-content: center;
}
.fp-otp-input {
  width: 52px; height: 58px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: #ede8ff;
  font-size: 24px; font-weight: 800;
  text-align: center;
  font-family: 'Cabinet Grotesk', 'Neue Machina', sans-serif;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  caret-color: #a78bfa;
}
.fp-otp-input:focus {
  border-color: rgba(167,139,250,0.6);
  box-shadow: 0 0 0 3px rgba(167,139,250,0.12);
  background: rgba(255,255,255,0.07);
}
.fp-otp-input:not(:placeholder-shown) {
  border-color: rgba(167,139,250,0.4);
  background: rgba(167,139,250,0.07);
}

/* ── Password requirements ─────────────────────────────────────────────── */
.fp-reqs {
  display: flex; flex-direction: column; gap: 7px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 11px;
}
.fp-req {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600;
  color: rgba(237,232,255,0.35);
  transition: color 0.2s ease;
}
.fp-req-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.fp-req--met { color: rgba(237,232,255,0.85); }
.fp-req--met .fp-req-dot {
  background: #34d399;
  box-shadow: 0 0 6px rgba(52,211,153,0.5);
}

/* ── Submit disabled state ─────────────────────────────────────────────── */
.biz-submit-btn:disabled {
  opacity: 0.4; cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

@media (max-width: 480px) {
  .fp-otp-input { width: 42px; height: 50px; font-size: 20px; }
  .fp-otp-row   { gap: 7px; }
}