.aks-contact-form-section {
	padding: 48px 0;
}

.aks-contact-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px 40px;
}

.aks-contact-form-image {
	position: relative;
	min-height: 0;
	overflow: hidden;
	border-radius: 12px;
}

.aks-contact-form-image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aks-contact-form-top {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 40px 0;
	margin-bottom: 40px;
	text-align: center;
}
.aks-contact-form-top h1 {
	font-size: 42px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.2em;
	text-wrap: balance;
}
.aks-contact-form-top p {
	font-size: 20px;
	max-width: 882px;
}
.aks-contact-form-box {
	background:
		linear-gradient(black, black) padding-box,
		linear-gradient(135deg, #a97e2c 15.43%, #f4e683 41.31%, #bf923d 69.92%, #f1ea82 86.26%) border-box;
	border: 3px solid transparent;
	padding: 32px;
	border-radius: 12px;
	margin-inline: auto;
}

.aks-contact-form-box-footer {
	margin-top: 20px;
	text-align: center;

	p {
		font-size: 14px;
	}

	a {
		text-decoration: underline;
	}
}

.aks-signup-form {
	max-width: 100%;
}

.aks-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}

.aks-field {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.aks-field-full {
	grid-column: 1 / -1;
}

.aks-field label {
	font-size: 18px;
}

.aks-field input {
	width: 100%;
	height: 46px;
	padding: 10px 12px;
	border: 1px solid #fff;
	color: #fff;
	border-radius: 4px;
	background: transparent;
	color: inherit;
	font: inherit;
}

.aks-consents {
	display: grid;
	gap: 12px;
	margin-top: 30px;
}

.aks-checkbox {
	display: flex;
	align-items: flex-start;
	font-size: 14px;
	line-height: 1.45em;
	gap: 10px;

	a {
		text-decoration: underline;
	}
}

.aks-checkbox input {
	margin-top: 4px;
}

.aks-submit-row {
	display: flex;
	justify-content: center;
	width: 100%;
}

.aks-submit {
	margin-top: 30px;
	min-height: 46px;
	padding: 10px 18px;
	cursor: pointer;
}

.aks-submit[disabled] {
	cursor: wait;
	opacity: 0.65;
}

.aks-message {
	margin-top: 14px;
}

.aks-message.is-success {
	font-weight: 600;
}

.aks-message.is-error {
	font-weight: 600;
}

.aks-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
}

@media (max-width: 1099px) {
	.aks-contact-form-row {
		grid-template-columns: 1fr;
	}

	.aks-contact-form-image {
		order: -1;
	}

	.aks-contact-form-image img {
		position: static;
		height: auto;
	}
}

@media (max-width: 767px) {
	.aks-contact-form-top h1 {
		font-size:28px;
	}

	.aks-grid {
		grid-template-columns: 1fr;
	}

	.aks-field-full {
		grid-column: auto;
	}
}
