/**
 * PRNT Platform — Kimlik Doğrulama Özel Stilleri (auth.css)
 * 
 * Giriş, Kayıt ve Şifre Kurtarma sayfaları için ortalanmış lüks kart stilleri.
 * @package PRNT
 */

.auth-wrapper {
  min-height: calc(100vh - var(--navbar-height) - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header__icon {
  width: 56px;
  height: 56px;
  background: var(--accent-gradient);
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: var(--fw-extrabold);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.auth-title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

/* Şifre Gücü Çubuğu */
.password-meter-track {
  width: 100%;
  height: 6px;
  background: var(--bg-surface-elevated);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 0.5rem;
}

.password-meter-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width var(--transition-normal), background-color var(--transition-normal);
}

.password-meter-text {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
  margin-top: 0.35rem;
}
