.deletion-page {
  max-width: 860px;
}

.deletion-page h1 {
  font-size: clamp(42px, 7vw, 62px);
}

.deletion-lead {
  max-width: 760px;
  margin: 0 0 48px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.deletion-page ol {
  padding-left: 24px;
}

.deletion-page strong {
  color: var(--navy);
}

.deletion-form {
  position: relative;
  display: grid;
  gap: 20px;
  margin: 28px 0;
  padding: 28px;
  border: 1px solid #dce9f0;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f3fafc);
  box-shadow: 0 15px 38px rgba(8, 38, 74, .08);
}

.deletion-form label:not(.deletion-check) {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

.deletion-form input,
.deletion-form select,
.deletion-form textarea {
  width: 100%;
  border: 1px solid #c8d9e4;
  border-radius: 9px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}

.deletion-form textarea {
  min-height: 132px;
  resize: vertical;
}

.deletion-form input:focus,
.deletion-form select:focus,
.deletion-form textarea:focus {
  border-color: var(--teal);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(16, 183, 181, .14);
}

.deletion-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.deletion-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.deletion-form .button {
  justify-self: start;
}

.deletion-form .form-note {
  margin: -6px 0 0;
  font-size: 12px;
}

.optional {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.request-message {
  margin: 24px 0;
  padding: 14px 16px;
  border-radius: 10px;
  line-height: 1.6;
}

.request-message-success {
  border: 1px solid #8fd5be;
  background: #eaf8f2;
  color: #08634d;
}

.request-message-error {
  border: 1px solid #efb1b1;
  background: #fff0f0;
  color: #9b2424;
}

.direct-email {
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  background: var(--sky);
}

.request-website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 560px) {
  .deletion-form {
    padding: 21px;
  }

  .deletion-form .button {
    width: 100%;
  }
}
