body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mid-gray);
}

.btn-primary {
  display: inline-block;
  background: #D269E6;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #be55d1;
  transform: scale(1.02);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  border: 1.5px solid #D269E6;
  color: #D269E6;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  background: #D269E6;
  color: var(--white);
}

/* ── Form validation ── */
.input--error {
  border-color: #f04 !important;
}

.input-error-msg {
  display: block;
  font-size: 12px;
  color: #f04;
  margin-top: 4px;
}

.select--error .custom-select__trigger {
  border-color: #f04 !important;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 48px 0;
}

.form-success p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
