/* Benchmark Takeover Styles */
.form-group {
	margin-bottom: 1.5rem;
}
.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #1a1a1a;
	font-size: 0.875rem;
	letter-spacing: 0.025em;
}
.form-input {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	transition: all 0.2s ease;
	background-color: #fff;
}
.form-input:focus {
	outline: none;
	border-color: #0073e6;
	box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.1);
}
.form-input::placeholder {
	color: #999;
}
.dn {
	display: none;
}
.network-hint {
	font-size: 0.75rem;
	color: #666;
	margin-top: 0.25rem;
	font-style: italic;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.error-message {
	background: #fee;
	border-left: 4px solid #f44336;
	color: #d32f2f;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
	.form-input {
		max-width: 100%;
	}
	.submit-button {
		width: 100%;
		justify-content: center;
	}
}
.benchmark-card {
	background: white;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	padding: 2rem;
	margin: 40px auto;
}
.card-header {
	text-align: center;
	margin-bottom: 2rem;
}
.card-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 0.5rem 0;
}
.card-subtitle {
	color: #666;
	font-size: 1rem;
}
.divider {
	height: 1px;
	background: #e0e0e0;
	margin: 1.5rem 0;
}
.email-gate-overlay {
	animation: fadeIn 0.3s ease;
	backdrop-filter: blur(4px);
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.email-gate-overlay .benchmark-card {
	animation: slideUp 0.3s ease;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin: 1rem 0;
}
.checkbox-container input[type='checkbox'] {
	width: 35px;
	height: 20px;
	appearance: auto;
}
.checkbox-container label {
	font-size: 0.875rem;
	line-height: 1.4;
	margin: 0;
}
.success-message {
	background: #e8f5e8;
	border-left: 4px solid #4caf50;
	color: #2e7d32;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	margin-top: 1.5rem;
}

/* Benchmark Arrow Icons */
.benchmark-arrow--down {
	transform: rotate(180deg);
	display: inline-block;
}

.benchmark-arrow {
	top: 2px;
}
