
.fce-form-box,
.fce-form-box * {
	box-sizing: border-box;
}

.fce-form-box {
	width: 100%;
	background: #eaf2fb;
}

.fce-header {
	text-align: center;
	margin-bottom: 20px;
}

.fce-title {
	margin: 0;
	font-size: 28px;
	line-height: 1.1;
	font-weight: 500;
}

.fce-subtitle {
	font-size: 25px;
	line-height: 1.15;
}

.fce-form {
	width: 100%;
}

.fce-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin-bottom: 13px;
}

.fce-row-two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fce-field {
	display: flex;
	align-items: center;
	width: 100%;
	min-width: 0;
	background: #fff;
	border: 2px solid #9d9d9d;
	overflow: hidden;
}

.fce-field-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 56px;
	line-height: 1;
}

.fce-field-icon svg {
	display: block;
}

.fce-field input,
.fce-field textarea {
	width: 100%;
	min-width: 0;
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	padding: 10px 14px 10px 0;
	font-size: 22px;
	line-height: 1.2;
	resize: vertical;
}

.fce-message-field textarea {
	min-height: 52px;
}

.fce-submit-wrap {
	display: flex;
	justify-content: center;
	margin-top: 12px;
}

.fce-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	border: 0;
	cursor: pointer;
	transition: opacity .2s ease, transform .2s ease;
}

.fce-submit:hover,
.fce-submit:focus-visible {
	opacity: .88;
	transform: translateY(-1px);
}

.fce-submit:disabled {
	opacity: .65;
	cursor: wait;
}

.fce-submit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	line-height: 1;
}

.fce-submit-icon svg {
	width: 1em;
	height: 1em;
	display: block;
}

.fce-status {
	margin-top: 12px;
	text-align: center;
	font-size: 14px;
	line-height: 1.3;
}

.fce-status.is-success {
	color: #137333;
}

.fce-status.is-error {
	color: #b3261e;
}

.fce-honeypot {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

@media (max-width: 1024px) {
	.fce-row-two {
		grid-template-columns: 1fr 1fr;
	}

	.fce-title {
		font-size: 25px;
	}

	.fce-subtitle {
		font-size: 21px;
	}
}

@media (max-width: 767px) {
	.fce-row-two {
		grid-template-columns: 1fr;
	}

	.fce-field-icon {
		flex-basis: 46px;
	}

	.fce-field input,
	.fce-field textarea {
		font-size: 17px;
	}

	.fce-title {
		font-size: 22px;
	}

	.fce-subtitle {
		font-size: 17px;
	}

	.fce-submit {
		width: 100%;
	}
}
