/* Webshopschool Site Analyzer Form */
.wssa-form-wrap {
	max-width: 560px;
	margin: 0 auto;
	padding: 32px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.wssa-title {
	font-size: 28px;
	color: #2c2c2c;
	margin: 0 0 8px;
	line-height: 1.2;
}
.wssa-subtitle {
	color: #6b6b6b;
	margin-bottom: 24px;
	line-height: 1.6;
}
.wssa-form .wssa-row { margin-bottom: 16px; }
.wssa-form label {
	display: block;
}
.wssa-form label > span {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #2c2c2c;
	margin-bottom: 6px;
}
.wssa-form input[type="text"],
.wssa-form input[type="email"],
.wssa-form input[type="url"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d8d8d8;
	border-radius: 6px;
	font-size: 15px;
	transition: border-color .15s;
	box-sizing: border-box;
}
.wssa-form input:focus {
	outline: none;
	border-color: #E8A3B8;
	box-shadow: 0 0 0 3px rgba(232,163,184,0.15);
}
.wssa-consent {
	display: flex;
	gap: 10px;
	font-size: 13px;
	color: #6b6b6b;
	margin: 18px 0;
	line-height: 1.5;
	cursor: pointer;
}
.wssa-consent input[type="checkbox"] {
	margin-top: 3px;
	flex-shrink: 0;
}
.wssa-submit {
	display: block;
	width: 100%;
	background: #E8A3B8;
	color: #fff;
	border: none;
	padding: 14px 22px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: background .15s;
}
.wssa-submit:hover { background: #d68fa5; }
.wssa-submit:disabled { background: #ccc; cursor: not-allowed; }
.wssa-message {
	margin-top: 16px;
	padding: 12px 14px;
	border-radius: 6px;
	font-size: 14px;
	display: none;
}
.wssa-message.is-success {
	display: block;
	background: #e9f5ee;
	color: #2c5e3f;
	border: 1px solid #b9dcc6;
}
.wssa-message.is-error {
	display: block;
	background: #fdeeee;
	color: #8b2e2e;
	border: 1px solid #f0c4c4;
}
.cf-turnstile { margin: 16px 0; }
