/* ═══════════════════════════════════════════════════════════
   login.css — Login page styles
═══════════════════════════════════════════════════════════ */

.login-page {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}

/* ── Card wrapper ───────────────────────────────────────── */
.login-wrap {
  display: flex;
  width: 100%; max-width: 860px;
  min-height: 520px;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--navy-border);
  box-shadow:
    0 0 60px rgba(198,167,94,0.06),
    0 40px 80px rgba(0,0,0,0.6);
  animation: fadeUp .5s ease both;
}

/* ── Left: Form panel ───────────────────────────────────── */
.login-form-panel {
  flex: 1;
  padding: 52px 48px;
  background: linear-gradient(135deg, rgba(13,18,40,0.97) 0%, rgba(7,10,26,0.99) 100%);
  display: flex; flex-direction: column; justify-content: center;
}

.brand-badge {
  display: inline-flex; align-items: center; gap: 7px;
  margin-bottom: 22px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: rgba(198,167,94,0.65);
}
.brand-badge svg {
  fill: none; stroke: rgba(198,167,94,0.75);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.login-title {
  font-family: var(--font-serif);
  font-size: 30px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--text-primary); line-height: 1.25; margin-bottom: 8px;
}
.login-sub {
  font-size: 13px; color: var(--text-secondary); margin-bottom: 28px;
}

.switch-link {
  text-align: center; font-size: 12px;
  color: var(--text-muted); margin-top: 16px;
}
.switch-link a { color: var(--gold); font-weight: 600; }

.security-row {
  display: flex; justify-content: space-between;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(198,167,94,0.08);
  font-size: 10px; color: var(--text-muted); letter-spacing: 0.04em;
}

/* ── Right: Visual panel ────────────────────────────────── */
.login-visual-panel {
  flex: 1; min-width: 280px;
  position: relative; overflow: hidden;
  /*background: linear-gradient(160deg, #0D1829 0%, #0A1220 50%, #06101E 100%);*/
  background: white;
  border-left: 1px solid rgba(198,167,94,0.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

/* Animated rings */
.visual-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(198,167,94,0.1);
  animation: ringPulse ease-in-out infinite;
}
.ring--1 { width: 440px; height: 440px; animation-duration: 5s;   animation-delay: 0s;    opacity: .22; }
.ring--2 { width: 330px; height: 330px; animation-duration: 6s;   animation-delay: .8s;   opacity: .18; }
.ring--3 { width: 220px; height: 220px; animation-duration: 7s;   animation-delay: 1.6s;  opacity: .14; }
.ring--4 { width: 110px; height: 110px; animation-duration: 4.5s; animation-delay: 2.4s;  opacity: .10; }

.visual-content {
  position: relative; text-align: center; padding: 40px 36px;
}

.shield-icon {
  width: 100px; height: 100px; margin: 0 auto 24px;
  border-radius: 50%;
  /*background: rgba(198,167,94,0.07); border: 1px solid rgba(198,167,94,0.2);*/
  display: flex; align-items: center; justify-content: center;
  animation: floatY 5s ease-in-out infinite;
}

.visual-label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 600; color: var(--navy-input); margin-bottom: 8px;
}
.visual-title {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 600;
  color: var(--gold-dark); line-height: 1.28; margin-bottom: 10px;
}
.visual-divider {
  width: 28px; height: 2px; margin: 0 auto 14px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.visual-desc {
  font-size: 12px; color: var(--navy-input); line-height: 1.6;
  max-width: 220px; margin: 0 auto 26px;
}
.visual-stats { display: flex; gap: 24px; justify-content: center; }
.stat-val { font-size: 14px; font-weight: 700; color: var(--gold); }
.stat-lbl {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(198,167,94,0.35); margin-top: 2px;
}

.visual-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(198,167,94,0.4), transparent);
}

.login-logo{
  width: 380px;
  height: 150px;
}
.signature{
  width: 140px;
  height: 70px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 720px) {
  .login-visual-panel { display: none; }
  .login-form-panel   { padding: 40px 28px; }
}


