.omoda-form-wrap {
	max-width: 768px;
	margin: 0 auto;
	color: #ffffff;
}

.omoda-form-row {
	margin-bottom: 1.2em;
}

.omoda-form-row label {
	display: block;
	margin-bottom: 0.4em;
	font-size: 14px;
}

.omoda-required {
	color: #ff6b6b;
}

@media (min-width: 640px) {
	.omoda-form-grid {
		display: flex;
		gap: 1em;
	}

	.omoda-form-grid .omoda-form-row {
		flex: 1;
		min-width: 0;
	}
}

.omoda-form-row input,
.omoda-form-row select,
.omoda-form-row textarea {
	width: 100%;
	padding: 0.8em 1em;
	background-color: rgba(255, 255, 255, 0);
	color: #ffffff;
	border: 1px solid #666666;
	font-size: 16px;
	box-sizing: border-box;
}

.omoda-form-row input:focus,
.omoda-form-row select:focus,
.omoda-form-row textarea:focus {
	background-color: #0d0f0e;
	outline: none;
}

.omoda-form-row select:disabled {
	opacity: 0.5;
}

.omoda-form-row textarea {
	min-height: 120px;
	resize: vertical;
}

.omoda-form-feedback {
	margin-bottom: 1em;
	font-size: 14px;
}

.omoda-form-feedback.is-error {
	color: #ff6b6b;
}

.omoda-form-feedback.is-success {
	color: #6bff8f;
}

.omoda-form-submit {
	display: block;
	width: 100%;
	padding: 0.9em;
	background-color: #ffffff;
	color: #201e1f;
	border: 0;
	font-size: 16px;
	cursor: pointer;
}

.omoda-form-submit:disabled {
	opacity: 0.6;
	cursor: default;
}
