.contact {
  padding: 40px 20px;
}
.contact__title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact__wrapper {
  max-width: 480px;
  margin: 0 auto;
}
.contact__row {
  display: flex;
  gap: 1rem;
}
.contact__row .contact__field {
  flex: 1;
}
.contact__field {
  margin-bottom: 16px;
}
.contact__field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact__field input,
.contact__field textarea,
.contact__field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #333;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}
.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: #858585;
}
.contact__field textarea {
  resize: vertical;
}
.contact__checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact__checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid #d46cff;
  border-radius: 6px;
  background: #290a40;
  flex-shrink: 0;
  accent-color: #d46cff;
  margin-top: 2px;
}
.contact__checkbox label {
  font-size: 16px;
  font-weight: 500;
}
.contact__checkbox label a {
  text-decoration: underline;
}
.contact__thank-you {
  text-align: center;
  padding: 60px 20px;
}
.contact__thank-you p {
  font-size: 24px;
  font-weight: 700;
  color: #3efff3;
}
.contact__field.error input,
.contact__field.error textarea {
  border-color: #ff4444;
}

@media (max-width: 768px) {
  .contact__row {
    flex-direction: column;
    gap: 0;
  }
  .contact__title {
    font-size: 24px;
  }
  .contact__field label {
    font-size: 12px;
  }
  .contact__field input,
  .contact__field textarea,
  .contact__field select {
    font-size: 14px;
  }
  .contact .btn--primary {
    font-size: 18px;
  }
}
