.aboutPage {
  max-width: 900px;
  margin: 0 auto;
}

.aboutNotice {
  margin: 0;
}

.aboutFormCard {
  padding: 24px;
}

.stackForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stackForm label {
  font-weight: 600;
  color: #e6eef6;
}

.stackForm input,
.stackForm textarea {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: #e6eef6;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.stackForm input:focus,
.stackForm textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.stackForm textarea {
  resize: vertical;
  min-height: 120px;
}

#submitButton {
  margin-top: 6px;
}
