/* ============================================================
   ForexAI - Auth pages
   ============================================================ */

.auth-body {
  min-height: 100vh;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(0,255,136,.07), transparent),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(59,130,246,.07), transparent);
}

.auth-wrap {
  display: flex;
  min-height: 100vh;
}

/* Left brand panel */
.auth-side {
  width: 42%;
  max-width: 520px;
  background: linear-gradient(160deg, #10103a 0%, #1a1a2e 55%, #0f0f23 100%);
  border-right: 1px solid var(--border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.auth-side::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,136,.12), transparent 70%);
  top: -120px; right: -120px;
}
.auth-side::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,.1), transparent 70%);
  bottom: -100px; left: -100px;
}
.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .3px;
  position: relative;
  z-index: 1;
}
.auth-brand:hover { color: var(--green); }
.auth-side-inner { margin-top: auto; margin-bottom: auto; position: relative; z-index: 1; padding: 60px 0; }
.auth-side-inner h2 { font-size: 30px; font-weight: 800; line-height: 1.25; }
.auth-side-inner h2 span { color: var(--green); }
.auth-side-inner p { color: var(--text-dim); line-height: 1.7; margin-top: 14px; }
.auth-features { list-style: none; padding: 0; margin: 26px 0 0; }
.auth-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
}
.auth-features i {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--green-dim);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.auth-side-footer { color: #5c6180; font-size: 12px; position: relative; z-index: 1; }

/* Right form panel */
.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.auth-card {
  width: 100%;
  max-width: 420px;
}
.auth-card-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--green-dim);
  color: var(--green);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.auth-card h1 { font-size: 24px; font-weight: 800; }
.auth-subtitle { color: var(--text-dim); margin: 6px 0 26px; font-size: 14px; }
.auth-form .btn-lg { padding: 13px; }
.auth-switch {
  text-align: center;
  margin-top: 22px;
  color: var(--text-dim);
  font-size: 14px;
}
.auth-switch a { color: var(--green); text-decoration: none; font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }

.otp-input {
  font-size: 24px !important;
  letter-spacing: 12px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .auth-side { display: none; }
}
