/* ========================================
   ACCOUNTS (signup / login)
   ======================================== */

.auth-page {
  padding: 70px 0 90px;
  background: #f8fafc;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 34px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.auth-aside {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #22c55e 140%);
  color: #fff;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.18);
}

.auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  margin-bottom: 18px;
}

.auth-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.auth-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin: 0 0 18px;
}

.auth-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
}

.auth-mini-note {
  margin-top: 16px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

.auth-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.auth-card-title {
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0 0 18px;
  color: #0f172a;
}

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

.auth-field .form-label {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.auth-input {
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
}

.auth-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.22);
}

.auth-btn-primary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #22c55e 140%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.auth-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.30);
}

.auth-switch {
  margin: 10px 0 0;
  text-align: center;
  color: #475569;
  font-weight: 700;
}

.auth-switch a {
  color: #2563eb;
  font-weight: 900;
  text-decoration: none;
}

.auth-switch a:hover {
  text-decoration: underline;
}

.auth-alert {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #7f1d1d;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.auth-error {
  margin-top: 6px;
  color: #b91c1c;
  font-weight: 700;
  font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 992px) {
  .auth-grid {
    grid-template-columns: 1fr;
  }

  .auth-aside {
    padding: 26px;
  }
}
