/* Стилі для оверлею та модального вікна CAPTCHA */
#overlay {
  display: block; /* За замовчуванням увімкнено */
  transition: opacity 0.3s ease;
}

#overlay.hidden {
  display: none;
}

#captcha-modal {
  display: flex; /* Показуємо модальне вікно */
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: scale(1.05);
}

#captcha-modal.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.98);
}

.cf-turnstile {
  margin: 1rem 0;
}

/* Стилі для кнопки Надіслати у вимкненому стані */
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Повідомлення про помилку CAPTCHA */
#captcha-error {
  color: #dc2626;
  text-align: center;
  margin-top: 0.5rem;
}

