﻿/* Auth Pages â€” Register / Login */
.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1rem;
  position: relative; overflow: hidden;
}
.auth-mesh {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 15%, rgba(22, 163, 74, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 85%, rgba(255, 215, 0, 0.08), transparent 50%),
    linear-gradient(165deg, #05080F 0%, #0F172A 45%, #0B1220 100%);
}
.auth-shape {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.25;
  animation: authFloat 12s ease-in-out infinite;
}
.auth-shape-1 { width: 300px; height: 300px; background: #16A34A; top: -80px; left: -60px; }
.auth-shape-2 { width: 250px; height: 250px; background: #FFD700; bottom: -60px; right: -40px; animation-delay: -4s; }
.auth-shape-3 { width: 180px; height: 180px; background: #4ADE80; top: 40%; left: 60%; animation-delay: -8s; opacity: 0.15; }
@keyframes authFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.auth-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.auth-card-icon {
  width: 64px; height: 64px; margin: 0 auto 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.25), rgba(255, 215, 0, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #FFD700;
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.12);
}
.auth-card h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.5rem; text-align: center; margin-bottom: 0.35rem;
}
.auth-card .auth-sub {
  text-align: center; color: #94A3B8; font-size: 0.88rem; margin-bottom: 1.75rem;
}
.auth-brand-link {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 1.5rem; text-decoration: none; color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
}
.auth-brand-link img { height: 72px; width: auto; object-fit: contain; }
.auth-brand-link .accent { color: #FFD700; }

.form-group-ajt { margin-bottom: 1.15rem; }
.form-group-ajt label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: #94A3B8; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.input-wrap {
  position: relative; display: flex; align-items: center;
}
.input-wrap i.input-icon {
  position: absolute; left: 14px; color: #64748B; font-size: 0.9rem; pointer-events: none;
}
.input-wrap .form-control {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #E8EDF3;
  padding: 0.8rem 1rem 0.8rem 2.6rem;
  font-size: 0.92rem;
  transition: all 0.25s;
}
.input-wrap .form-control:focus {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
  color: #fff;
}
.input-wrap .form-control::placeholder { color: #475569; }
.toggle-pass {
  position: absolute; right: 12px; background: none; border: none;
  color: #64748B; cursor: pointer; padding: 4px; font-size: 0.9rem;
}
.toggle-pass:hover { color: #FFD700; }

.strength-meter { margin-top: 0.5rem; }
.strength-bar {
  height: 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.08); overflow: hidden;
}
.strength-fill { height: 100%; width: 0%; border-radius: 4px; transition: all 0.3s; }
.strength-fill.weak { width: 33%; background: #EF4444; }
.strength-fill.medium { width: 66%; background: #F59E0B; }
.strength-fill.strong { width: 100%; background: #16A34A; }
.strength-text { font-size: 0.7rem; color: #64748B; margin-top: 0.25rem; }

.auth-options {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem; font-size: 0.85rem;
}
.auth-options .form-check-label { color: #94A3B8; cursor: pointer; }
.auth-options .form-check-input:checked { background-color: #16A34A; border-color: #16A34A; }
.auth-options a { color: #FFD700; font-weight: 500; }
.auth-options a:hover { text-decoration: underline; }

.auth-submit {
  width: 100%; padding: 0.9rem;
  background: linear-gradient(135deg, #16A34A, #22C55E);
  border: none; border-radius: 14px;
  color: #fff; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.35);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.auth-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22, 163, 74, 0.5); }
.auth-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.auth-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.5rem 0; color: #64748B; font-size: 0.8rem;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(255, 255, 255, 0.08);
}

.social-btns { display: flex; flex-direction: column; gap: 0.65rem; }
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0.75rem; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #E8EDF3; font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: all 0.25s; width: 100%;
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}
.social-btn.google i { color: #EA4335; }
.social-btn.facebook i { color: #1877F2; }
.social-btn.phone i { color: #4ADE80; }

.auth-footer-text {
  text-align: center; margin-top: 1.5rem; font-size: 0.88rem; color: #94A3B8;
}
.auth-footer-text a { color: #FFD700; font-weight: 600; }
.auth-footer-text a:hover { text-decoration: underline; }

.auth-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: #94A3B8; font-size: 0.82rem; margin-top: 1rem;
  text-decoration: none; transition: color 0.2s;
}
.auth-back:hover { color: #FFD700; }

/* ========== Register UI/UX — Dilkash Design ========== */
.reg-body {
  margin: 0; min-height: 100vh;
  font-family: 'Poppins', 'Inter', sans-serif;
  color: #E8EDF3; background: #05080F; overflow-x: hidden;
}
.reg-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(160deg, #05080F 0%, #0B1220 45%, #07140f 100%);
}
.reg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 18%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 18%, transparent 72%);
}
.reg-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4;
  animation: regBlob 14s ease-in-out infinite;
}
.reg-blob.b1 { width: 420px; height: 420px; background: #16A34A; top: -120px; left: -100px; }
.reg-blob.b2 { width: 360px; height: 360px; background: #FFD700; bottom: -100px; right: -80px; animation-delay: -5s; opacity: 0.25; }
.reg-blob.b3 { width: 220px; height: 220px; background: #4ADE80; top: 40%; left: 45%; animation-delay: -9s; opacity: 0.15; }
@keyframes regBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(24px,-18px) scale(1.08); }
}

.reg-wrap {
  position: relative; z-index: 1; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.25rem 1rem 2rem;
}
.reg-back-top {
  max-width: 1080px; width: 100%; margin: 0 auto 0.85rem;
  color: #94A3B8; text-decoration: none; font-size: 0.85rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.reg-back-top:hover { color: #FFD700; }

.reg-panel {
  width: 100%; max-width: 1080px;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  border-radius: 30px; overflow: hidden;
  background: rgba(10, 14, 26, 0.78);
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(30px);
  box-shadow: 0 40px 110px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03) inset, 0 0 90px rgba(255,215,0,0.06);
}

/* Left brand */
.reg-left {
  padding: 2.75rem 2.4rem;
  background: linear-gradient(165deg, rgba(22,163,74,0.22), rgba(15,23,42,0.15) 50%, rgba(255,215,0,0.1));
  border-right: 1px solid rgba(255,215,0,0.12);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}

/* Charming logo stage */
.reg-logo-stage {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem 0.5rem;
}
.reg-logo-stage.compact {
  max-width: 200px; margin: 0 auto 1.25rem; padding: 0.5rem;
}
.logo-aura {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.28), rgba(22,163,74,0.12) 45%, transparent 70%);
  filter: blur(8px);
  animation: auraPulse 3.5s ease-in-out infinite;
}
.reg-logo-stage.compact .logo-aura { width: 140px; height: 140px; }
@keyframes auraPulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.12); opacity: 1; }
}
.logo-ring {
  position: absolute; width: 210px; height: 210px; border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.25);
  box-shadow: 0 0 30px rgba(255,215,0,0.12), inset 0 0 30px rgba(22,163,74,0.08);
  animation: ringSpinSlow 18s linear infinite;
}
@keyframes ringSpinSlow { to { transform: rotate(360deg); } }
.logo-spark {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: #FFD700; box-shadow: 0 0 12px #FFD700;
  animation: sparkFloat 3s ease-in-out infinite;
}
.logo-spark.s1 { top: 12%; right: 18%; }
.logo-spark.s2 { bottom: 18%; left: 14%; background: #4ADE80; box-shadow: 0 0 12px #4ADE80; animation-delay: -1s; }
.logo-spark.s3 { top: 40%; left: 8%; width: 4px; height: 4px; animation-delay: -1.8s; }
@keyframes sparkFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-8px) scale(1.3); opacity: 1; }
}
.reg-logo {
  position: relative; z-index: 2;
  width: 100%; max-width: 240px; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 28px rgba(255,215,0,0.35)) drop-shadow(0 0 40px rgba(22,163,74,0.2));
  animation: logoFloat 5s ease-in-out infinite;
}
.reg-logo-stage.compact .reg-logo { max-width: 170px; }
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.reg-tagline {
  width: 100%; text-align: center;
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  color: #FFD700; font-weight: 600; margin: 0 0 1.35rem;
  text-shadow: 0 0 20px rgba(255,215,0,0.35);
}
.reg-left h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.65rem, 3.2vw, 2.2rem); line-height: 1.18;
  margin: 0 0 0.9rem; color: #fff;
}
.reg-left h1 em {
  font-style: normal;
  background: linear-gradient(105deg, #FFD700, #FFF4B0 40%, #4ADE80);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.reg-lead {
  color: #94A3B8; font-size: 0.92rem; line-height: 1.65;
  margin: 0 0 1.5rem; max-width: 380px;
}
.reg-benefits {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.reg-benefits li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; color: #CBD5E1;
}
.reg-benefits i {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: #0A0F1E;
  background: linear-gradient(135deg, #4ADE80, #16A34A);
  flex-shrink: 0;
}

/* Right form */
.reg-right {
  padding: 2.4rem 2.1rem 2rem;
  background: rgba(6, 10, 20, 0.65);
}
.reg-form-head { margin-bottom: 1.4rem; }
.reg-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0.3rem 0.7rem; border-radius: 8px;
  font-size: 0.72rem; font-weight: 600; color: #4ADE80;
  background: rgba(22,163,74,0.12); border: 1px solid rgba(74,222,128,0.22);
  margin-bottom: 0.75rem;
}
.reg-right h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.6rem; margin: 0 0 0.3rem; color: #fff;
}
.reg-sub { color: #64748B; font-size: 0.88rem; margin: 0; }

/* Floating label modern inputs */
.reg-form { display: flex; flex-direction: column; gap: 0.95rem; }
.ux-field { margin-bottom: 0; }
.ux-input {
  position: relative;
  display: flex; align-items: center;
  min-height: 68px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.02) 40%, rgba(0,0,0,0.35) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 8px 24px rgba(0,0,0,0.22);
  transition: border-color 0.28s, box-shadow 0.28s, transform 0.28s, background 0.28s;
  overflow: hidden;
}
.ux-input::before {
  content: '';
  position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 3px; border-radius: 0 4px 4px 0;
  background: rgba(255,255,255,0.12);
  transition: background 0.28s, box-shadow 0.28s, opacity 0.28s;
  opacity: 0.7;
}
.ux-glow {
  position: absolute; inset: -40% -20%;
  background: radial-gradient(ellipse at 30% 40%, rgba(255,215,0,0.12), transparent 55%);
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.ux-input:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.ux-input.focus {
  border-color: rgba(255,215,0,0.5);
  background:
    linear-gradient(145deg, rgba(255,215,0,0.07) 0%, rgba(255,255,255,0.03) 45%, rgba(0,0,0,0.4) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 4px rgba(255,215,0,0.1),
    0 14px 32px rgba(0,0,0,0.32);
  transform: translateY(-2px);
}
.ux-input.focus .ux-glow { opacity: 1; }
.ux-field[data-field="user"] .ux-input.focus {
  border-color: rgba(74,222,128,0.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 4px rgba(22,163,74,0.12),
    0 14px 32px rgba(0,0,0,0.32);
}
.ux-field[data-field="user"] .ux-input.focus::before,
.ux-field[data-field="user"] .ux-input::before {
  background: linear-gradient(180deg, #4ADE80, #16A34A);
  box-shadow: 0 0 12px rgba(74,222,128,0.45);
}
.ux-field[data-field="user"] .ux-glow {
  background: radial-gradient(ellipse at 28% 40%, rgba(74,222,128,0.16), transparent 55%);
}
.ux-field[data-field="user"] .ux-input.focus label { color: #4ADE80; }
.ux-field[data-field="user"] .ux-line {
  background: linear-gradient(90deg, transparent, #16A34A, #4ADE80, transparent);
}

.ux-field[data-field="phone"] .ux-input.focus {
  border-color: rgba(96,165,250,0.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 4px rgba(96,165,250,0.12),
    0 14px 32px rgba(0,0,0,0.32);
}
.ux-field[data-field="phone"] .ux-input.focus::before,
.ux-field[data-field="phone"] .ux-input::before {
  background: linear-gradient(180deg, #93C5FD, #3B82F6);
  box-shadow: 0 0 12px rgba(96,165,250,0.45);
}
.ux-field[data-field="phone"] .ux-glow {
  background: radial-gradient(ellipse at 28% 40%, rgba(96,165,250,0.16), transparent 55%);
}
.ux-field[data-field="phone"] .ux-input.focus label { color: #93C5FD; }
.ux-field[data-field="phone"] .ux-line {
  background: linear-gradient(90deg, transparent, #3B82F6, #60A5FA, transparent);
}

.ux-field[data-field="pass"] .ux-input.focus {
  border-color: rgba(255,215,0,0.55);
}
.ux-field[data-field="pass"] .ux-input.focus::before,
.ux-field[data-field="pass"] .ux-input::before {
  background: linear-gradient(180deg, #FFE566, #FFD700);
  box-shadow: 0 0 12px rgba(255,215,0,0.45);
}
.ux-field[data-field="pass"] .ux-glow {
  background: radial-gradient(ellipse at 28% 40%, rgba(255,215,0,0.16), transparent 55%);
}
.ux-field[data-field="pass"] .ux-input.focus label { color: #FFD700; }
.ux-field[data-field="pass"] .ux-line {
  background: linear-gradient(90deg, transparent, #FFD700, #FFE566, transparent);
}

.ux-ico {
  position: absolute; left: 14px; z-index: 2;
  width: 42px; height: 42px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.92rem; pointer-events: none;
  transition: transform 0.28s, box-shadow 0.28s, filter 0.28s;
}
.ux-ico.user {
  color: #4ADE80;
  background: linear-gradient(145deg, rgba(22,163,74,0.22), rgba(22,163,74,0.08));
  border: 1px solid rgba(74,222,128,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.ux-ico.phone {
  color: #93C5FD;
  background: linear-gradient(145deg, rgba(59,130,246,0.22), rgba(59,130,246,0.08));
  border: 1px solid rgba(96,165,250,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.ux-ico.lock {
  color: #FFD700;
  background: linear-gradient(145deg, rgba(255,215,0,0.2), rgba(255,215,0,0.06));
  border: 1px solid rgba(255,215,0,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.ux-input.focus .ux-ico {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.15));
}
.ux-input input {
  width: 100%; background: transparent; border: none; outline: none;
  color: #F8FAFC; font-size: 0.98rem; font-family: inherit; font-weight: 500;
  padding: 1.55rem 3.2rem 0.6rem 4.25rem;
  letter-spacing: 0.2px;
}
.ux-input input:-webkit-autofill,
.ux-input input:-webkit-autofill:hover,
.ux-input input:-webkit-autofill:focus {
  -webkit-text-fill-color: #F8FAFC;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0 1000px rgba(10,15,30,0.85) inset;
}
.ux-input label {
  position: absolute; left: 4.25rem; top: 50%;
  transform: translateY(-50%);
  font-size: 0.94rem; color: #64748B; font-weight: 500;
  pointer-events: none; transition: all 0.22s ease;
}
.ux-input.focus label,
.ux-input.filled label {
  top: 11px; transform: none;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.6px; text-transform: uppercase;
  color: #FFD700;
}
.ux-line {
  position: absolute; left: 12%; bottom: 0; height: 2px; width: 0;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, #16A34A, #FFD700, #4ADE80);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ux-input.focus .ux-line { width: 76%; }
.ux-eye {
  position: absolute; right: 14px; z-index: 3;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  width: 38px; height: 38px; border-radius: 12px;
  color: #94A3B8; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s;
}
.ux-eye:hover {
  color: #FFD700;
  border-color: rgba(255,215,0,0.4);
  background: rgba(255,215,0,0.1);
  box-shadow: 0 0 16px rgba(255,215,0,0.15);
}
.ux-hint { display: none; }

.reg-submit {
  position: relative; overflow: hidden;
  width: 100%; margin-top: 0.35rem; padding: 1.05rem 1.25rem;
  border: none; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 0.98rem; font-family: inherit; color: #fff; cursor: pointer;
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 45%, #15803D 100%);
  box-shadow: 0 10px 30px rgba(22,163,74,0.38);
  transition: transform 0.25s, box-shadow 0.25s;
}
.reg-submit .shine {
  position: absolute; top: 0; left: -50%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg); animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
  0%, 45% { left: -50%; }
  75%, 100% { left: 120%; }
}
.reg-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(22,163,74,0.5); }
.reg-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.reg-submit .fa-arrow-right { font-size: 0.85rem; transition: transform 0.25s; }
.reg-submit:hover .fa-arrow-right { transform: translateX(5px); }

.reg-or {
  display: flex; align-items: center; gap: 12px;
  margin: 1.35rem 0 1rem; color: #64748B; font-size: 0.72rem;
}
.reg-or::before, .reg-or::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.reg-or span { text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }

.reg-social { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem; margin-bottom: 1.25rem; }
.reg-social .social-btn {
  width: 100%; height: auto; padding: 0.75rem 0.4rem;
  border-radius: 14px; flex-direction: column; gap: 5px; font-size: 0.72rem;
}
.reg-social .social-btn i { font-size: 1.05rem; }
.reg-social .google { color: #EA4335; }
.reg-social .facebook { color: #1877F2; }
.reg-social .phone { color: #4ADE80; }

.reg-foot { text-align: center; margin: 0; font-size: 0.88rem; color: #94A3B8; }
.reg-foot a { color: #FFD700; font-weight: 700; text-decoration: none; }
.reg-foot a:hover { text-decoration: underline; }

/* Login options row */
.login-opts {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin: -0.25rem 0 1.15rem; flex-wrap: wrap;
}
.login-remember {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.84rem; color: #94A3B8; cursor: pointer; user-select: none; margin: 0;
}
.login-remember input { position: absolute; opacity: 0; pointer-events: none; }
.login-remember .check-box {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: transparent; font-size: 0.65rem;
  transition: all 0.2s;
}
.login-remember input:checked + .check-box {
  background: linear-gradient(135deg, #16A34A, #22C55E);
  border-color: #16A34A; color: #fff;
  box-shadow: 0 4px 12px rgba(22,163,74,0.35);
}
.login-remember:hover { color: #CBD5E1; }
.login-opts .forgot-link {
  font-size: 0.84rem; font-weight: 600; color: #FFD700; text-decoration: none;
}
.login-opts .forgot-link:hover { text-decoration: underline; color: #FFE566; }

/* Auth success toaster */
.ajt-toast {
  border: 1px solid rgba(74,222,128,0.4) !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.5) !important;
  padding: 0.85rem 1rem !important;
}
.ajt-toast-title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
}
.ajt-toast-bar {
  background: linear-gradient(90deg, #16A34A, #FFD700) !important;
}

/* Admin login — modern gate with animated logo */
.al-body {
  min-height: 100vh;
  margin: 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  color: #E2E8F0;
  background: #05070F;
  overflow-x: hidden;
}
.al-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.14), transparent 42%),
    radial-gradient(ellipse at 20% 80%, rgba(22,163,74,0.1), transparent 40%),
    linear-gradient(165deg, #05070F 0%, #0B1020 55%, #070A12 100%);
}
.al-grid {
  position: absolute; inset: 0; opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
}
.al-beam {
  position: absolute; left: 50%; top: -10%; width: 2px; height: 55%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(255,215,0,0.45), transparent);
  filter: blur(1px); opacity: 0.55;
  animation: alBeam 4.5s ease-in-out infinite;
}
@keyframes alBeam {
  0%, 100% { opacity: 0.25; transform: translateX(-50%) scaleY(0.9); }
  50% { opacity: 0.7; transform: translateX(-50%) scaleY(1.05); }
}
.al-orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.32;
}
.al-orb.a { width: 340px; height: 340px; top: -80px; left: 10%; background: #FFD700; }
.al-orb.b { width: 280px; height: 280px; bottom: 0; right: 5%; background: #16A34A; }
.al-orb.c { width: 180px; height: 180px; top: 40%; left: -40px; background: #C9A227; }

.al-main {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem; padding: 2rem 1.15rem 2.5rem;
}

.al-stage {
  text-align: center; max-width: 520px;
}
.al-logo-link { display: inline-block; text-decoration: none; }
.al-logo-orbit {
  position: relative;
  width: 220px; height: 220px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.al-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(255,215,0,0.22);
}
.al-ring.r1 {
  inset: 8px;
  border-color: transparent;
  border-top-color: rgba(255,215,0,0.75);
  border-right-color: rgba(255,215,0,0.15);
  box-shadow: 0 0 24px rgba(255,215,0,0.15);
}
.al-ring.r2 {
  inset: -6px;
  border-color: transparent;
  border-bottom-color: rgba(74,222,128,0.55);
  border-left-color: rgba(74,222,128,0.12);
}
.al-ring.r3 {
  inset: -22px;
  border-style: dashed;
  border-color: rgba(255,215,0,0.18);
  opacity: 0.8;
}
.al-pulse {
  position: absolute; width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.28), transparent 68%);
  animation: alPulse 2.8s ease-out infinite;
}
@keyframes alPulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}
.al-spark {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: #FFD700; box-shadow: 0 0 12px #FFD700;
}
.al-spark.s1 { top: 12%; right: 18%; }
.al-spark.s2 { bottom: 16%; left: 14%; background: #4ADE80; box-shadow: 0 0 12px #4ADE80; }
.al-spark.s3 { top: 42%; left: 4%; width: 4px; height: 4px; }
.al-spark.s4 { bottom: 28%; right: 8%; width: 5px; height: 5px; background: #FFE566; }
.al-logo {
  position: relative; z-index: 2;
  width: 100%; max-width: 168px; height: auto; object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(255,215,0,0.4)) drop-shadow(0 0 36px rgba(22,163,74,0.2));
}
.al-tag {
  margin: 0 0 0.55rem;
  font-size: 0.72rem; letter-spacing: 2.4px; text-transform: uppercase;
  color: #FFD700; font-weight: 700;
  text-shadow: 0 0 18px rgba(255,215,0,0.35);
}
.al-stage h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem); margin: 0 0 0.4rem; color: #fff;
}
.al-stage h1 em {
  font-style: normal;
  background: linear-gradient(105deg, #FFD700, #FFF4B0 40%, #4ADE80);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.al-lead { margin: 0; color: #94A3B8; font-size: 0.92rem; }

.al-card {
  width: 100%; max-width: 440px;
  border-radius: 24px; padding: 1.65rem 1.45rem 1.35rem;
  background: linear-gradient(160deg, rgba(14,18,32,0.92), rgba(8,10,18,0.88));
  border: 1px solid rgba(255,215,0,0.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 24px 60px rgba(0,0,0,0.45),
    0 0 50px rgba(255,215,0,0.06);
  backdrop-filter: blur(18px);
}
.al-card-head { text-align: center; margin-bottom: 1.25rem; }
.al-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0.32rem 0.75rem; border-radius: 999px; margin-bottom: 0.75rem;
  font-size: 0.72rem; font-weight: 700; color: #FFD700;
  background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.28);
}
.al-card-head h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.45rem; margin: 0 0 0.25rem; color: #fff;
}
.al-card-head p { margin: 0; color: #64748B; font-size: 0.86rem; }

.al-form { display: flex; flex-direction: column; gap: 0.95rem; }
.al-error {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1rem; padding: 0.85rem 1rem;
  border-radius: 14px; font-size: 0.86rem; color: #FCA5A5;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
}
.al-submit {
  position: relative; overflow: hidden;
  width: 100%; margin-top: 0.2rem; padding: 1.05rem 1.25rem;
  border: none; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: 0.98rem; font-family: inherit; cursor: pointer;
  color: #0A0A0A;
  background: linear-gradient(135deg, #FFD700 0%, #E8C547 45%, #C9A227 100%);
  box-shadow: 0 12px 32px rgba(255,215,0,0.32);
  transition: transform 0.25s, box-shadow 0.25s;
}
.al-submit .shine {
  position: absolute; top: 0; left: -50%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-18deg); animation: btnShine 3s ease-in-out infinite;
}
.al-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,215,0,0.45);
}
.al-submit .fa-arrow-right { transition: transform 0.25s; }
.al-submit:hover .fa-arrow-right { transform: translateX(5px); }
.al-secure {
  text-align: center; margin: 1.1rem 0 0;
  font-size: 0.72rem; color: #64748B; letter-spacing: 0.3px;
}
.al-secure i { color: #FFD700; margin-right: 6px; }

@media (max-width: 520px) {
  .al-logo-orbit { width: 180px; height: 180px; }
  .al-logo { max-width: 140px; }
  .al-card { padding: 1.35rem 1.1rem 1.15rem; border-radius: 20px; }
}

@media (max-width: 991px) {
  .reg-panel { grid-template-columns: 1fr; max-width: 440px; }
  .reg-left { display: none; }
  .reg-right { padding: 1.75rem 1.25rem 1.5rem; }
  .reg-back-top { max-width: 440px; }
}
@media (max-width: 420px) {
  .reg-right h2 { font-size: 1.35rem; }
  .ux-input { min-height: 64px; border-radius: 16px; }
  .reg-social .social-btn { font-size: 0.65rem; }
}
