/* ═══════════════════════════════════════════════════════
   LUXES DIGITAL BLUE — Authentication Page Styles
   Sıfırdan Yazıldı - 2026 (Neon Efektsiz Temiz Kod)
   ═══════════════════════════════════════════════════════ */

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  z-index: 10;
}

.auth-container {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: auth-fade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.auth-logo {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.auth-logo i {
  font-size: 3.5rem;
  color: var(--color-cyan-light);
  filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.15));
}

.auth-logo-text {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--color-cyan-light) 0%, var(--color-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.auth-subtitle {
  font-family: var(--font-header);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--color-slate-400);
  text-transform: uppercase;
  margin-top: -4px;
}

.auth-card {
  padding: 40px;
}

.auth-title {
  font-family: var(--font-header);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-align: center;
}

.auth-desc {
  color: var(--color-slate-400);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 28px;
}

.auth-footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-slate-500);
  margin-top: 10px;
}

.auth-link {
  color: var(--color-cyan-light);
  font-weight: 600;
}

.auth-link:hover {
  color: var(--color-blue-light);
  text-decoration: underline;
}

/* Giriş/Kayıt arası geçişler */
.auth-panel-toggle {
  display: none;
}

.auth-panel-toggle.active {
  display: block;
}

/* Şifre Göster/Gizle Butonu */
.password-input-wrapper {
  position: relative;
  width: 100%;
}

.password-input-wrapper .form-control {
  padding-right: 48px;
}

.password-toggle-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-slate-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.password-toggle-btn:hover {
  color: var(--text-secondary);
}

/* Sayfa arka planındaki dijital partikül/efektler */
.auth-bg-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

@keyframes auth-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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