/* PropertyMe Forms — frontend styles. */

[x-cloak] { display: none !important; }

.pme-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.pme-form__field {
	display: flex;
	flex-direction: column;
}

.pme-form__field input,
.pme-form__field select,
.pme-form__field textarea {
	width: 100%;
}

.pme-form__error {
	color: #c0392b;
	font-size: 0.875rem;
	min-height: 1em;
	margin: 0.25rem 0 0;
}

.pme-form__error:empty {
	display: none;
}

.pme-form__radio,
.pme-form__checkbox {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-right: 1rem;
}

.pme-form__submit[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}

.pme-form__success {
	background: #e8f5e9;
	color: #1b5e20;
	padding: 0.75rem 1rem;
	border-radius: 4px;
}
