@charset "UTF-8";

.honey-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  tabindex: -1;
  aria-hidden: true;
}

.char-counter {
  font-size: 14px;
  color: #9ca3af;
  text-align: right;
  transition: color 0.2s;
  background-color: #efefef;
  border-radius: 0 0 8px 8px;
  padding: 8px 16px;
  box-sizing: border-box;
  margin-top: -8px;
}

.char-counter.warning { color: #f59e0b; }
.char-counter.ready   { color: #10b981; }

.error-msg {
  font-size: 14px;
  line-height: normal;
  color: #ef4444;
  margin-top: 0.3rem;
  display: none;
}

.recaptcha-wrap {
  margin-bottom: 1.5rem;
}

.btn-submit {
  width: 100%;
  background: #6366f1;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-submit:hover  { background: #4f46e5; }
.btn-submit:active { transform: scale(0.98); }
.btn-submit:disabled { background: #a5b4fc; cursor: not-allowed; }
