/* ═══════════════════════════════════════
   NYROXIS AI — AUTH STYLES
═══════════════════════════════════════ */

#auth-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] #auth-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(251,118,30,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,118,30,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

[data-theme="dark"] #auth-screen::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(251,118,30,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.auth-top {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
}

.auth-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  animation: fadeUp 0.35s ease;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.auth-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.auth-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.auth-brand-name span { color: var(--orange); }

.auth-tagline {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 28px;
  line-height: 1.5;
}

.auth-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg3);
  border-radius: 11px;
  padding: 6px;
  margin-bottom: 22px;
  overflow: visible;

}

.auth-tab {
  flex: 1;
  padding: 10px 8px;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: normal;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-tab.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 10px rgba(251,118,30,0.30);
}

.auth-footer {
  text-align: center;
  font-size: 11px;
  color: var(--text3);
  margin-top: 20px;
  line-height: 1.8;
}

.auth-link {
  color: var(--orange);
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}

.auth-link:hover { text-decoration: underline; }

.auth-forgot {
  text-align: right;
  margin-top: -10px;
  margin-bottom: 14px;
}

/* Verify email page */
.verify-card {
  text-align: center;
  padding: 48px 40px;
}

.verify-icon {
  font-size: 48px;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
  display: block;
}

.verify-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.verify-sub {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Spam notice */
.spam-notice {
  background: var(--orange-dim);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text2);
  margin-top: 14px;
  text-align: left;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .auth-card { padding: 28px 20px; }
}
