/* === Giriş / Kayıt Sayfaları Özel Stilleri === */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px);
  position: relative;
  background:
    radial-gradient(circle at 10% 20%, rgba(238, 41, 81, 0.12), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.08), transparent 30%),
    var(--bg);
  overflow: hidden;
}

.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: rgba(26, 29, 38, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #ff6b6b, var(--green));
}

.auth-card .logo-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  font-size: 1.7rem;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(238, 41, 81, 0.25);
}

.auth-card h1 {
  font-size: 1.7rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}

.auth-card .auth-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
  pointer-events: none;
}

.input-icon input,
.input-icon textarea,
.input-icon select {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text);
  font-size: 0.96rem;
  outline: none;
  transition: all 0.2s ease;
}

.input-icon input:focus,
.input-icon textarea:focus,
.input-icon select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(238, 41, 81, 0.1);
}

.input-icon input:focus ~ i,
.input-icon textarea:focus ~ i,
.input-icon select:focus ~ i {
  color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-actions {
  margin-top: 10px;
}

.form-actions .btn-primary {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgba(238, 41, 81, 0.25);
  transition: all 0.2s ease;
}

.form-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(238, 41, 81, 0.35);
}

.auth-footer {
  text-align: center;
  margin-top: 22px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--accent);
  font-weight: 600;
}

.remember-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.remember-row label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.remember-row input[type="checkbox"] {
  width: auto;
  accent-color: var(--accent);
}

.terms-row {
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.terms-row label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.terms-row input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--accent);
}

@media (max-width: 480px) {
  .auth-card {
    padding: 28px 22px;
    margin: 0 16px;
  }
}
