.fal-form-wrap {
	display: block;
}

.fal-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.fal-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.fal-label {
	font-size: 13px;
	font-weight: 600;
	color: #666;
	line-height: 1.3;
}

.fal-input {
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	line-height: 1.3;
	border: 1px solid #ccc;
	border-radius: 6px;
	background: #fff;
	color: #1a1a1a;
	box-sizing: border-box;
}

.fal-input:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

.fal-actions {
	margin-top: 4px;
}

/* Submit button + state colors (matches the pattern from the other plugins) */

.fal-form .fal-submit {
	display: inline-block;
	margin: 0;
	padding: 12px 24px;
	background: #1a1a1a;
	color: #fff;
	border: 1px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	box-shadow: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.fal-form .fal-submit:hover {
	background: #000;
	color: #fff;
}

.fal-form .fal-submit.fal-submit--loading,
.fal-form .fal-submit.fal-submit--loading:hover {
	background: #a8d8a8;
	color: #1a1a1a;
	cursor: progress;
}

.fal-form .fal-submit.fal-submit--ok,
.fal-form .fal-submit.fal-submit--ok:hover {
	background: #2a8c2a;
	color: #fff;
}

.fal-form .fal-submit.fal-submit--err,
.fal-form .fal-submit.fal-submit--err:hover {
	background: #c62828;
	color: #fff;
}

.fal-form .fal-submit:disabled:not(.fal-submit--loading) {
	opacity: 0.6;
	cursor: not-allowed;
}

.fal-error {
	padding: 10px 12px;
	background: rgba(198, 40, 40, 0.08);
	border: 1px solid rgba(198, 40, 40, 0.25);
	border-radius: 6px;
	color: #c62828;
	font-size: 13px;
	line-height: 1.4;
}
