/* Auth glass screens */
.auth-body { overflow: hidden; background: #0e0714; }
.bg-canvas { position: fixed; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,59,111,.15), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0,210,255,.1), transparent 50%), #0e0714; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .4; animation: orb 12s ease-in-out infinite alternate; }
.orb:nth-child(1) { width: 400px; height: 400px; background: var(--primary); top: -10%; left: -5%; }
.orb:nth-child(2) { width: 350px; height: 350px; background: var(--secondary); bottom: -10%; right: -5%; }
@keyframes orb { 50% { transform: translate(20px,-30px) scale(1.08); } }
.app-shell { position: relative; z-index: 2; min-height: 100%; display: flex; align-items: center; justify-content: center; padding: 16px; }
.glass-card {
  width: 100%; max-width: 420px; max-height: 92vh; overflow: auto;
  background: rgba(255,255,255,.06); backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 28px 24px;
}
.page { display: none; } .page.active { display: block; }
.input-group { position: relative; margin-bottom: 14px; }
.input-group input, .input-group textarea {
  width: 100%; padding: 12px 16px 12px 42px; border-radius: 14px;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12); color: #fff;
}
.input-group .input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #666; }
.toggle-pw { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: #777; }
.form-footer { text-align: center; margin-top: 14px; font-size: .8rem; color: var(--muted); }
