/* Turnstile Widget Styles */

/* Turnstile container */
.turnstile-container {
	margin: 1rem 0;
	display: flex;
	justify-content: center;
	position: relative;
}

/* Turnstile label - homepage style */
.turnstile-label {
	position: absolute;
	top: -6px;
	left: 6px;
	font-size: 0.75rem;
	color: #666;
	font-weight: 500;
	background: var(--primary);
	color: white;
	padding: 2px 6px;
	border-radius: 4px;
	z-index: 1;
}

/* Turnstile widget */
.cf-turnstile {
	display: flex;
	justify-content: center;
}

/* Homepage specific Turnstile scaling */
.turnstile-container .cf-turnstile {
	transform: scale(0.9);
	transform-origin: center;
}

/* Disabled button styles */
.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

 