/* ================================================================
   DATA ACCESS REQUEST PAGE
   ================================================================ */

.dar-form-section {
  padding: 0 24px 80px;
}

.dar-form-inner {
  max-width: 800px;
  margin: 0 auto;
}

.dar-checkbox-fieldset {
  border: 0;
  padding: 0;
  min-width: 0;
}

.dar-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dar-checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
  cursor: pointer;
}

.dar-checkbox-item input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--sl-blue-600);
}

.dar-checkbox-item .dar-note-inline {
  display: block;
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 3px;
}

.dar-other-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dar-other-row input[type="text"] {
  flex: 1;
  min-width: 200px;
  font: inherit;
  font-size: 14px;
  padding: 9px 12px;
  border: 1px solid var(--sl-line);
  border-radius: var(--radius-md);
  outline: none;
}

.dar-other-row input[type="text"]:focus {
  border-color: var(--sl-blue-600);
  box-shadow: 0 0 0 3px var(--sl-blue-100);
}

.dar-ack-item {
  font-weight: 600;
  color: var(--fg-1);
}

.dar-pdf-note {
  font-size: 13px;
  color: var(--fg-3);
  text-align: center;
  margin-top: 18px;
}

.dar-submit-row {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.dar-submit-disclaimer {
  font-size: 13px;
  color: var(--fg-3);
  max-width: 480px;
}

.dar-form-status {
  flex-basis: 100%;
  font-size: 14px;
  font-weight: 500;
}

.dar-form-status--success {
  color: var(--color-success, #1a7f37);
}

.dar-form-status--error {
  color: var(--color-error, #d1242f);
}

@media (max-width: 640px) {
  .dar-other-row input[type="text"] { min-width: 0; width: 100%; }
  .dar-submit-row { flex-direction: column; align-items: stretch; }
  .dar-submit-disclaimer { max-width: none; }
  .form-submit-btn { width: 100%; }
}
