:root {
  --withdrawal-brand: #585bff;
  --withdrawal-text: #202131;
  --withdrawal-muted: #656778;
  --withdrawal-border: #dfe1eb;
}

.withdrawal-main {
  min-height: 70vh;
  padding: clamp(38px, 7vw, 84px) 18px;
  background: #f5f6fa;
}

.withdrawal-card {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--withdrawal-border);
  border-radius: 3px;
  background: #fff;
  color: var(--withdrawal-text);
  box-shadow: 0 18px 55px rgba(27, 29, 55, 0.08);
}

.withdrawal-kicker {
  margin: 0 0 8px;
  color: var(--withdrawal-brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.withdrawal-card h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1;
}

.withdrawal-card > p {
  color: var(--withdrawal-muted);
  line-height: 1.7;
}

.withdrawal-scope-note {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--withdrawal-border);
  border-radius: 3px;
  background: #f8f8ff;
}

.withdrawal-scope-note p {
  margin: 0;
  color: var(--withdrawal-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.withdrawal-form {
  display: grid;
  gap: 9px;
  margin-top: 28px;
}

.withdrawal-form label {
  margin-top: 10px;
  font-size: 0.86rem;
  font-weight: 800;
}

.withdrawal-form input,
.withdrawal-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 13px;
  border: 1px solid var(--withdrawal-border);
  border-radius: 3px;
  color: var(--withdrawal-text);
  background: #fff;
  font: inherit;
}

.withdrawal-form input:focus,
.withdrawal-form textarea:focus {
  border-color: var(--withdrawal-brand);
  outline: 3px solid rgba(88, 91, 255, 0.15);
}

.withdrawal-form .withdrawal-consumer-confirmation {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.withdrawal-form .withdrawal-consumer-confirmation input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.withdrawal-form button {
  min-height: 50px;
  margin-top: 12px;
  padding: 12px 18px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: var(--withdrawal-brand);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.withdrawal-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.withdrawal-declaration,
.withdrawal-legal {
  font-size: 0.82rem;
}

.withdrawal-feedback {
  display: grid;
  gap: 5px;
  margin: 24px 0;
  padding: 15px;
  border: 1px solid;
  border-radius: 3px;
}

.withdrawal-feedback--success {
  border-color: #78c9a8;
  background: #edfaf4;
}

.withdrawal-feedback--error {
  border-color: #e3a6a6;
  background: #fff2f2;
}
