.form-confirmation {
  box-sizing: border-box;
  width: 100%;
  max-width: 760px;
  margin: 24px auto;
  padding: clamp(30px, 6vw, 58px);
  color: #173b2d;
  background: #f4f0e6;
  border-top: 1px solid rgba(23, 59, 45, 0.28);
  border-bottom: 1px solid rgba(23, 59, 45, 0.28);
  outline: none;
}

.form-confirmation__label {
  margin: 0 0 18px;
  color: #62784f;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.form-confirmation__title {
  max-width: 620px;
  margin: 0 0 22px;
  color: inherit;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.7rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
}

.form-confirmation__body,
.form-confirmation__note {
  max-width: 620px;
  margin: 0;
  color: #334b40;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.75;
}

.form-confirmation__body a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-confirmation__note {
  margin-top: 18px;
  color: #627066;
  font-size: 0.92rem;
}

.form-confirmation__action {
  margin: 26px 0 0;
}

.form-confirmation__action a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(23, 59, 45, 0.34);
  color: #173b2d;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.form-confirmation__action a:hover,
.form-confirmation__action a:focus-visible {
  border-color: #173b2d;
  background: #173b2d;
  color: #f4f0e6;
  outline: 0;
}

@media (max-width: 620px) {
  .form-confirmation {
    margin: 16px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .form-confirmation {
    scroll-behavior: auto;
  }
}
