/*
 * volunteer-form.css — Volunteer page submission form styles
 */

/* Base font styling shared with other section titles - css/layout.css */
.volunteer-form-title {
  letter-spacing: var(--tracking-tight);
  text-align: center;
  margin: 0 0 var(--space-8);
}

.form-status {
  max-width: 32rem;
  margin: 0 auto var(--space-4);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
}

.form-status.is-success {
  color: var(--clr-accent-dk);
}

.form-status.is-error {
  color: var(--clr-error);
}

.dp-volunteer-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.volunteer-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 32rem;
  margin: 0 auto;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.form-field label {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  color: var(--clr-ink);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-ui);
  font-size: var(--text-base);
  color: var(--clr-ink);
  padding: var(--space-3);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-sm);
  background: var(--clr-surface);
}

.volunteer-form-submit {
  align-self: flex-start;
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: var(--weight-semi);
  padding: var(--space-3) var(--space-8);
  border: none;
  border-radius: var(--radius-sm);
  background: var(--clr-accent);
  color: var(--clr-on-accent);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
}

.volunteer-form-submit:hover {
  background: var(--clr-accent-dk);
}

.volunteer-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.volunteer-body {
  max-width: 700px;
}

.description-paragraph {
  display: flex;
  flex-direction: row;
  align-items: center;
}