/* Phase 8 booth form styling */
.faa-booth-form-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.faa-booth-form {
  display: grid;
  gap: 20px;
}

.faa-form-section {
  padding: 20px;
}

.faa-form-section h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.faa-form-section label {
  display: block;
  margin: 0 0 6px;
  font-weight: 600;
}

.faa-form-section input[type="text"],
.faa-form-section input[type="email"],
.faa-form-section input[type="url"],
.faa-form-section input[type="number"],
.faa-form-section textarea,
.faa-form-section select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 0 10px;
}

.faa-form-section textarea {
  min-height: 140px;
}

.faa-field-error {
  margin: -4px 0 12px;
  color: #b32d2e;
  font-size: 13px;
}

.faa-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.faa-form-actions .button,
.faa-form-actions button,
.faa-form-actions input[type="submit"] {
  margin: 0;
}

@media (max-width: 782px) {
  .faa-form-section {
    padding: 16px;
  }

  .faa-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .faa-form-actions .button,
  .faa-form-actions button,
  .faa-form-actions input[type="submit"] {
    width: 100%;
    text-align: center;
  }
}
