/* Ensure Turnstile widget matches button width */
/* 为Turnstile创建专用容器 */
.turnstile-container {
  width: 100%;
  max-width: 500px; /* 可选：设置最大宽度 */
  margin: 0 auto; /* 居中显示 */
  padding: 15px;
  box-sizing: border-box;
}

/* 确保Turnstile全宽 */
.turnstile-container .cf-turnstile {
  width: 100% !important;
}

/* 错误消息样式 */
.turnstile-error {
  color: #e53e3e;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.turnstile-error.hidden {
  display: none;
}