.cf-wrapper {
	background: #eef1f5;
	padding: 40px;
	border-radius: 8px;
	max-width: 780px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.cf-title {
	font-size: 28px;
	font-weight: 700;
	color: #1f2430;
	margin: 0 0 30px 0;
}

.cf-field {
	margin-bottom: 22px;
}

.cf-field label {
	display: block;
	font-size: 15px;
	color: #1f2430;
	margin-bottom: 8px;
	font-weight: 500;
}

.cf-field input[type="text"],
.cf-field input[type="email"],
.cf-field input[type="tel"],
.cf-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1px solid #d7dce3;
	border-radius: 6px;
	background: #ffffff;
	font-size: 15px;
	color: #1f2430;
}

.cf-field textarea {
	resize: vertical;
	min-height: 160px;
}

.cf-field input:focus,
.cf-field textarea:focus {
	outline: none;
	border-color: #6c63ff;
	box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}

.cf-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.cf-checkbox-field {
	margin-bottom: 24px;
}

.cf-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	font-weight: 400;
	color: #1f2430;
	cursor: pointer;
}

.cf-checkbox-label input[type="checkbox"] {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	accent-color: #6c63ff;
	flex-shrink: 0;
}

.cf-checkbox-label a {
	color: #6c63ff;
	text-decoration: none;
}

.cf-checkbox-label a:hover {
	text-decoration: underline;
}

.cf-recaptcha-field {
	margin-bottom: 24px;
}

.cf-recaptcha-error {
	color: #a12b2b;
	font-size: 13px;
	margin: 8px 0 0 0;
}

.cf-submit-btn {
	background: #6c63ff;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: 12px 28px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: background 0.15s ease;
}

.cf-submit-btn:hover:not(:disabled) {
	background: #5a52e0;
}

.cf-submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.cf-btn-spinner {
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-top-color: #ffffff;
	border-radius: 50%;
	display: inline-block;
	animation: cf-spin 0.7s linear infinite;
}

@keyframes cf-spin {
	to { transform: rotate(360deg); }
}

.cf-alert {
	padding: 12px 16px;
	border-radius: 6px;
	margin-bottom: 20px;
	font-size: 14px;
}

.cf-alert-success {
	background: #e3f9e5;
	color: #1e7a34;
	border: 1px solid #b7ebc0;
}

.cf-alert-error {
	background: #fdeaea;
	color: #a12b2b;
	border: 1px solid #f5c2c2;
}
