/* Hasta auth & dashboard sayfaları için ortak stil */
.auth-shell {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
}
.auth-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(252, 184, 184, 0.25);
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 30px 80px -20px rgba(26, 29, 46, 0.18);
}
.auth-card h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1d2e;
  margin: 0 0 6px;
}
.auth-card p.lead {
  color: #6a6a4c;
  margin: 0 0 24px;
  font-size: 14px;
}
.auth-card .field {
  display: block;
  margin-bottom: 16px;
}
.auth-card .field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1a1d2e;
  margin-bottom: 6px;
}
.auth-card .field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(26, 29, 46, 0.12);
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  color: #1a1d2e;
  transition: border-color 0.2s;
}
.auth-card .field input:focus {
  outline: none;
  border-color: #FCB8B8;
  box-shadow: 0 0 0 3px rgba(252, 184, 184, 0.18);
}
.auth-card .auth-submit {
  width: 100%;
  background: linear-gradient(135deg, #FCB8B8 0%, #f99fb0 50%, #E8B14A 130%);
  color: #1a1d2e;
  border: none;
  border-radius: 14px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 8px 22px rgba(252, 184, 184, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.auth-card .auth-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(252, 184, 184, 0.5);
}
.auth-card .auth-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.auth-card .auth-alt {
  margin-top: 22px;
  text-align: center;
  font-size: 13.5px;
  color: #6a6a4c;
}
.auth-card .auth-alt a {
  color: #c98a8a;
  font-weight: 600;
  text-decoration: none;
}
.auth-card .auth-alt a:hover { text-decoration: underline; }
.auth-error {
  background: rgba(217, 134, 139, 0.1);
  border: 1px solid rgba(217, 134, 139, 0.3);
  color: #8f2f2f;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 16px;
}
.auth-success {
  background: rgba(158, 196, 128, 0.12);
  border: 1px solid rgba(158, 196, 128, 0.35);
  color: #5e8a4a;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 16px;
}

/* Hesabım dashboard */
.dash-shell {
  max-width: 1100px;
  margin: 90px auto 60px;
  padding: 0 24px;
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.dash-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 38px);
  margin: 0;
  letter-spacing: -0.02em;
}
.dash-header .dash-greet {
  color: #6a6a4c;
  margin-top: 6px;
}
.dash-logout {
  background: transparent;
  border: 1.5px solid rgba(26, 29, 46, 0.15);
  color: #1a1d2e;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.dash-logout:hover {
  border-color: #d9868b;
  color: #d9868b;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.dash-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(252, 184, 184, 0.2);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 20px 50px -15px rgba(26, 29, 46, 0.12);
}
.dash-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.dash-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dash-item {
  background: #fff;
  border: 1px solid rgba(26, 29, 46, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.dash-item-meta { font-size: 13px; color: #6a6a4c; margin-top: 2px; }
.dash-item strong { font-size: 14.5px; color: #1a1d2e; }
.dash-pill {
  background: rgba(252, 184, 184, 0.18);
  color: #d9868b;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dash-pill.success { background: rgba(158, 196, 128, 0.2); color: #5e8a4a; }
.dash-pill.warn { background: rgba(232, 177, 74, 0.2); color: #b5832a; }
.dash-empty {
  text-align: center;
  padding: 32px 12px;
  color: #6a6a4c;
  font-size: 14px;
}
.dash-download {
  background: #1a1d2e;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.dash-download:hover { background: #2a2e45; }

@media (max-width: 768px) {
  .dash-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 30px 24px; }
}
