/* Laiskus Forms — стили для инжектируемых сообщений и thank-you блока.
 * Намеренно минимально — наследуем шрифт/цвет от родительских стилей лендинга.
 */

.laiskus-msg {
	margin: 0 0 12px;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 0.95em;
	line-height: 1.4;
}
.laiskus-msg--error {
	background: rgba(239, 68, 68, 0.12);
	color: #b91c1c;
	border: 1px solid rgba(239, 68, 68, 0.3);
}
.laiskus-msg--info {
	background: rgba(59, 130, 246, 0.12);
	color: #1d4ed8;
	border: 1px solid rgba(59, 130, 246, 0.3);
}

.laiskus-thanks {
	text-align: center;
	padding: 30px 20px;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	animation: laiskus-fade-in 0.3s ease-out;
}
@keyframes laiskus-fade-in {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}
.laiskus-thanks__title {
	font-size: 1.25em;
	font-weight: 600;
	margin-bottom: 6px;
	line-height: 1.35;
}
.laiskus-thanks__phone {
	margin-top: 12px;
	font-size: 1em;
}
.laiskus-thanks__phone a {
	color: inherit;
	text-decoration: underline;
	font-weight: 600;
	white-space: nowrap;
}
.laiskus-thanks__note {
	font-size: 0.85em;
	opacity: 0.75;
	margin-top: 14px;
}
.laiskus-thanks__note a {
	color: inherit;
	text-decoration: underline;
}
