/* Auth Pages */
.auth-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #14532d 50%, #28a745 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-container {
  width: 100%;
  max-width: 420px;
}

.auth-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

[data-bs-theme="dark"] .auth-card {
  background: rgba(15, 23, 42, 0.96);
  color: #e2e8f0;
}

.auth-logo {
  text-align: center;
  margin-bottom: 28px;
}

.auth-logo-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 14px;
  box-shadow: 0 8px 24px rgba(40, 167, 69, .3);
}

.auth-logo h2 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

[data-bs-theme="dark"] .auth-logo h2 { color: #e2e8f0; }

.auth-logo p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

.auth-footer {
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  margin-top: 16px;
}
