/* ========================================
   Privacy Request Page Styles
   ======================================== */

.privacy-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.privacy-form-wrapper h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.privacy-form-wrapper > p {
  font-size: 0.95rem;
  color: var(--control-grey);
  margin-bottom: 32px;
}

.privacy-form__submit {
  align-self: flex-start;
}

/* --- Success State --- */
.privacy-form__success {
  text-align: center;
  padding: 48px 24px;
}

.privacy-form__success-icon {
  width: 64px;
  height: 64px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.privacy-form__success-icon svg {
  width: 32px;
  height: 32px;
  color: #2e7d32;
}

.privacy-form__success h3 {
  font-size: 1.3rem;
  color: #2e7d32;
  margin-bottom: 12px;
}

.privacy-form__success p {
  font-size: 1rem;
  color: var(--control-grey);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .privacy-form__submit {
    width: 100%;
  }

  .privacy-form__success {
    padding: 32px 16px;
  }
}
