/* AUTH SAYFALAR */
.auth-body {
  margin: 0; padding: 20px;
  background: #0d1b2a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Sans', sans-serif;
}

.auth-bg {
  width: 100%;
  display: flex;
  justify-content: center;
}

.auth-card {
  background: #0f2035;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.auth-card-wide { max-width: 780px; }

.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo-icon { font-size: 48px; display: block; margin-bottom: 8px; }
.auth-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #c9a227;
  margin: 0 0 4px;
  letter-spacing: 4px;
}
.auth-subtitle { color: #8892a4; font-size: 13px; margin: 0; }

.auth-error {
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: 8px;
  color: #e07070;
  font-size: 13px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.auth-success {
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: 8px;
  color: #6fcf97;
  font-size: 14px;
  padding: 16px;
  text-align: center;
  line-height: 1.8;
}

.auth-form { display: flex; flex-direction: column; gap: 16px; }

.auth-section-title {
  font-size: 12px;
  font-weight: 600;
  color: #c9a227;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(201,162,39,0.15);
  margin-top: 8px;
}

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

.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field label {
  font-size: 12px;
  font-weight: 600;
  color: #8892a4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.req { color: #e07070; }

.auth-field input,
.auth-field select,
.auth-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #f0ebe0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.auth-field input:focus,
.auth-field select:focus,
.auth-field textarea:focus { border-color: #c9a227; }
.auth-field select { appearance: none; cursor: pointer; }
.auth-field textarea { resize: vertical; min-height: 80px; }
.auth-field input::placeholder,
.auth-field textarea::placeholder { color: #4a5568; }

.auth-info {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #8892a4;
  font-size: 12px;
  padding: 12px 14px;
  line-height: 1.6;
}

.auth-btn {
  background: linear-gradient(135deg, #c9a227, #a87e0f);
  border: none;
  border-radius: 10px;
  color: #0d1b2a;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  margin-top: 8px;
}
.auth-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.auth-btn:active { transform: translateY(0); }

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #8892a4;
}
.auth-footer a { color: #c9a227; text-decoration: none; font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .auth-card { padding: 28px 20px; }
  .auth-row { grid-template-columns: 1fr; }
}
