body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #faf8f5 0%, #FEF3C7 50%, #FFEDD5 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.auth-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 2.5rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-decoration: none;
  color: var(--foreground);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--muted);
  font-size: 0.875rem;
}

.staff-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FEF3C7;
  color: #92400e;
  padding: 0.4rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.input-wrapper {
  position: relative;
}

.input-wrapper svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
}

.submit-btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
}

.alert {
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-align: center;
}

.alert-danger {
    background: #FEE2E2;
    color: #B91C1C;
}

.slug-preview {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.slug-preview span {
  color: var(--primary);
  font-weight: 500;
}

.label-hint {
  font-weight: 400;
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

/* Help box */
.help-box {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1.5rem;
}

.help-box-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.help-box-title svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.help-box p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}
