/* ThuanQT.com – CAPTCHA styles */
/* Base */
.tqt-captcha {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  margin: 8px 0;
}

/* Compact layout */
.tqt-captcha--compact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
}
.tqt-cap__q { color: #111827; white-space: nowrap; }
.tqt-cap__input {
  width: 110px;
  max-width: 150px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02) inset;
}
.tqt-cap__input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.tqt-cap__brand {
  margin-left: auto;
  font-size: 12px;
  color: #9ca3af;
}

/* Login page tweaks */
body.login .tqt-captcha--compact { width: 100%; }
