.fqo-wrapper { max-width: 380px; }
.fqo-form { display: flex; flex-direction: column; gap: 12px; }
.fqo-title { font-weight: 600; font-size: 1.1em; margin-bottom: 4px; }
.fqo-field { display: flex; flex-direction: column; gap: 4px; }
.fqo-field label { font-size: 0.9em; }
.fqo-field input {
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1em;
	box-sizing: border-box;
	width: 100%;
}

.fqo-phone-wrap { position: relative; }
.fqo-phone-prefix {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #666;
	pointer-events: none;
	font-size: 1em;
	line-height: 1;
}
.fqo-phone-wrap input.fqo-phone-input {
	padding-left: 48px;
}

.fqo-submit {
	padding: 12px 18px;
	border: none;
	border-radius: 4px;
	background: #F46036;
	color: #fff;
	font-size: 1em;
	cursor: pointer;
	transition: background-color 0.15s ease-in-out;
}
.fqo-submit:hover:not(:disabled) { background: #d94f28; }
.fqo-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.fqo-message { font-size: 0.9em; min-height: 1.2em; }
.fqo-message.fqo-success { color: #2e7d32; }
.fqo-message.fqo-error { color: #c62828; }
.fqo-message.fqo-final {
	font-size: 1em;
	font-weight: 500;
	padding: 14px 0;
}
