.vtx-resource-form {
	border: 1px solid rgba(64, 64, 68, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 28px 70px rgba(64, 64, 64, 0.08);
	font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	padding: 24px;
}

.vtx-resource-form__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vtx-resource-form__phone-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
	gap: 12px;
}

.vtx-resource-form__field {
	display: block;
	min-width: 0;
}

.vtx-resource-form__field input,
.vtx-resource-form__field select,
.vtx-resource-form__field textarea {
	display: block;
	width: 100%;
	min-height: 48px;
	border: 1px solid rgba(63, 63, 66, 0.16);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
	color: #404044;
	font: inherit;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.4;
	outline: none;
	padding: 0 16px;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.vtx-resource-form__field select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #77777b 50%), linear-gradient(135deg, #77777b 50%, transparent 50%);
	background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	padding-right: 34px;
}

.vtx-resource-form__field textarea {
	min-height: 112px;
	border-radius: 18px;
	padding-top: 14px;
	resize: vertical;
}

.vtx-resource-form__field input:focus,
.vtx-resource-form__field select:focus,
.vtx-resource-form__field textarea:focus {
	border-color: #ff5b1a;
	box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1), 0 0 0 3px rgba(255, 91, 26, 0.14);
}

.vtx-resource-form__submit {
	display: inline-flex;
	min-height: 50px;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, #ff4c2c, #ff6214 40%, #ffb217);
	box-shadow: 0 18px 38px rgba(255, 98, 20, 0.22);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	padding: 0 22px;
}

.vtx-resource-form__submit-icon {
	display: block;
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}

@media (max-width: 420px) {
	.vtx-resource-form {
		padding: 20px;
	}

	.vtx-resource-form__phone-grid {
		grid-template-columns: 1fr;
	}
}
