body { font-family: 'Inter', system-ui, sans-serif; }

input, textarea {
  transition: all 0.2s ease;
}

input:focus, textarea:focus {
  border-color: #f7c843;
  box-shadow: 0 0 0 3px rgba(247, 200, 67, 0.2);
}

/* Модалки анимация */
#successModal, #termsModal, #privacyModal {
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}