.af-form fieldset {
  border: 1px solid var(--af-border);
  border-radius: var(--af-radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.af-form legend {
  font-family: var(--af-font-heading);
  font-weight: 600;
  color: var(--af-black);
  padding: 0 0.5rem;
}
.af-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.af-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.af-form label.af-full { grid-column: 1 / -1; }
.af-form input, .af-form select, .af-form textarea {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--af-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
}
.af-form input:focus, .af-form select:focus, .af-form textarea:focus {
  outline: 2px solid var(--af-gold);
  outline-offset: 1px;
}
.af-checkbox-group label {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.af-form-note { font-size: 0.8rem; color: var(--af-steel); }
.af-attestations label { margin-bottom: 0.75rem; }
.af-notice {
  padding: 1rem 1.25rem;
  border-radius: var(--af-radius);
  margin-bottom: 1.5rem;
}
.af-notice--success {
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid var(--af-green);
  color: #1a6b40;
}
.af-notice--error {
  background: rgba(178, 59, 59, 0.08);
  border: 1px solid #B23B3B;
  color: #8a2a2a;
}

/* alpha-fulfillment-theme:forms.css */
