/* Synth.Directory: the takedown request form (James, 11 Sep 2026 - "add some kind of takedown
   request at bottom of site (MUST get captcha for this one though)"). No borders, same as
   everywhere else on the site; an 8px rhythm between fields and the submit button, tighter
   than the ordinary 14px .f gap elsewhere since this is a long form. Tokens from wiki.css. */

.takedown-form { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.takedown-form .f + .f { margin-top: 0; }

.takedown-form .check { display: flex; align-items: flex-start; gap: 8px; }
.takedown-form .check input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 3px; cursor: pointer; accent-color: var(--w-green); flex: 0 0 auto;
}
.takedown-form .check label { font-size: 14px; line-height: 1.4; color: var(--w-bone2); cursor: pointer; }

.takedown-form .cf-turnstile { margin-top: 4px; }
.takedown-form .btn { align-self: flex-start; }

/* keep the form inside the prose column */
.takedown-form, .takedown-panel, form.takedown { max-width: 68ch; margin-left: auto; margin-right: auto; }

/* mobile, 11 Sep: a full-width submit is easier to hit than the left-aligned one above */
@media (max-width: 480px) {
  .takedown-form .btn { align-self: stretch; width: 100%; }
}
