.superforms-shell {
	box-sizing: border-box;
	max-width: 1080px;
	margin: 0 auto;
	padding: 42px 44px 34px;
	background: #fff;
	border-left: 1px solid #dedede;
	border-right: 1px solid #dedede;
	color: #242424;
}

.superforms-shell *,
.superforms-shell *::before,
.superforms-shell *::after {
	box-sizing: border-box;
}

.superforms-form {
	width: 100%;
}

.superforms-form h2 {
	margin: 0 0 44px;
	color: #1f315d;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(34px, 4vw, 46px);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: 0;
	text-align: center;
}

.superforms-field {
	margin: 0 0 34px;
}

.superforms-field label {
	display: block;
	margin: 0 0 14px;
	color: #242424;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0;
}

.superforms-field input,
.superforms-field select,
.superforms-field textarea {
	display: block;
	width: 100%;
	min-height: 56px;
	margin: 0;
	padding: 13px 20px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 999px;
	box-shadow: none;
	color: #202020;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 19px;
	line-height: 1.35;
	letter-spacing: 0;
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.superforms-field select {
	appearance: auto;
}

.superforms-field textarea {
	min-height: 250px;
	padding: 28px 24px;
	border-radius: 38px;
	resize: vertical;
}

.superforms-field input:focus,
.superforms-field select:focus,
.superforms-field textarea:focus {
	border-color: #1f315d;
	box-shadow: 0 0 0 3px rgba(31, 49, 93, 0.14);
}

.superforms-field.has-error input,
.superforms-field.has-error select,
.superforms-field.has-error textarea {
	border-color: #b42318;
	box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.superforms-error {
	min-height: 20px;
	margin-top: 8px;
	color: #b42318;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 14px;
	line-height: 1.4;
}

.superforms-actions {
	display: flex;
	justify-content: center;
	margin-top: 6px;
}

.superforms-actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 420px;
	min-height: 68px;
	padding: 18px 32px;
	background: #223761;
	border: 0;
	border-radius: 7px;
	color: #fff;
	cursor: pointer;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
	transition: background 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.superforms-actions button:hover,
.superforms-actions button:focus,
.superforms-actions button:active {
	background: #17294e;
	color: #fff;
	transform: translateY(-1px);
}

.superforms-actions button:disabled {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.superforms-message {
	display: none;
	margin: 0 0 24px;
	padding: 15px 18px;
	border-radius: 7px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.45;
}

.superforms-message.is-success,
.superforms-message.is-error {
	display: block;
}

.superforms-message.is-success {
	background: #ecfdf3;
	border: 1px solid #abefc6;
	color: #067647;
}

.superforms-message.is-error {
	background: #fef3f2;
	border: 1px solid #fecdca;
	color: #b42318;
}

.superforms-missing {
	padding: 12px 14px;
	background: #fff8e5;
	border-left: 4px solid #dba617;
	color: #4b3b00;
}

@media (max-width: 760px) {
	.superforms-shell {
		padding: 30px 18px;
		border-left: 0;
		border-right: 0;
	}

	.superforms-form h2 {
		margin-bottom: 32px;
		font-size: 34px;
	}

	.superforms-field {
		margin-bottom: 26px;
	}

	.superforms-field label {
		font-size: 21px;
	}

	.superforms-field input,
	.superforms-field select,
	.superforms-field textarea {
		min-height: 54px;
		font-size: 17px;
	}

	.superforms-field textarea {
		min-height: 210px;
	}

	.superforms-actions button {
		width: 100%;
		min-width: 0;
		min-height: 60px;
		font-size: 20px;
	}
}
