/**
 * Стили обработчика форм (assets/js/forms.js):
 * honeypot-поле, подсветка ошибок, плашка успеха в инлайн-формах.
 * В модалках успех/ошибки рисуются стилями modals.css.
 */

/* Honeypot: визуально скрыто, боты заполняют - сервер молча игнорирует. */
.reb-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Ошибка валидации в инлайн-формах (в модалках - .reb-modal-form__field--error). */
form .reb-field--error {
	border-color: #D43030;
}

form .reb-field--error:focus {
	outline-color: #D43030;
}

/* Текст ошибок / сообщений под формой. */
.reb-form-error {
	font-size: 13px;
	line-height: 1.45;
	color: #D43030;
}

/* Плашка успеха в инлайн-формах (по стилю панели успеха модалок). */
.reb-form-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 18px 0 8px;
	text-align: center;
}

.reb-form-success__check {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 999px;
	background: var(--reb-accent);
	color: #fff;
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
}

.reb-form-success__title {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.reb-form-success__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--reb-text-muted);
}
