/* Public membership application form. Builds on the member theme tokens and
   reuses the member app's card and form classes; this file only adds the
   pieces the member shell does not already style: the page heading, the
   three-column address row, the textarea, the secondary button used for
   "add member", and the boxed layout for each added household member. */

.page-title {
  font-size: 1.4rem;
  margin: 4px 0 6px;
}

.addr-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.addr-row .field { flex: 1 1 120px; }

.account-panel textarea {
  border: 1px solid var(--hc-line);
  border-radius: 8px;
  padding: 10px;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}

.account-panel textarea:focus-visible {
  outline: 3px solid var(--hc-water);
  outline-offset: 1px;
}

.btn-secondary {
  background: var(--hc-water);
  color: var(--hc-water-ink);
}

#members-group { display: flex; flex-direction: column; gap: 10px; }

.member-row-block {
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius-sm);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.member-row-block .field span {
  font-size: 0.9rem;
  font-weight: 600;
}
