.embedded-form-wrap {
	padding: 64px 0;
	position: relative;
	overflow: hidden;
	background-color: #1A5E9F;
}
.embedded-form-container {
	width: var(--width);
	padding: 0 var(--indent);
	margin: auto;
	position: relative;
	z-index: 2;
}
.embedded-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 700px;
	height: fit-content;
	padding: 48px 120px;
	box-sizing: border-box;
	border-radius: 8px;
	background-color: #FFFFFF;
	margin: auto;
	margin-left: 0px;
}
.embedded-form-in {
	display: block;
	transition: opacity .2s;
	opacity: 1;
	width: fit-content;
}
.embedded-form--loading .embedded-form-in {
	pointer-events: none;
	user-select: none;
	opacity: .5;
}
.embedded-form-head {
	display: block;
	width: 100%;
	max-width: 380px;
}
.embedded-form-title {
	color: #283236;
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
}
.embedded-form-text {
	color: #283236;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}
* + .embedded-form-text {
	margin-top: 20px;
}
.embedded-form-body {
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: min-content;
	grid-column-gap: 0px;
	grid-row-gap: 16px;
	width: 100%;
	max-width: 380px;
}
* + .embedded-form-body {
	margin-top: 40px;
}
.embedded-form-body > * {
	margin: 0px!important;
	width: 100%!important;
}
.embedded-form-footer {
	display: block;
	width: 100%;
	max-width: 380px;
}
* + .embedded-form-footer {
	margin-top: 40px;
}
.embedded-form-footer > .Button {
	display: flex;
	width: 100%;
	box-sizing: border-box;
}
.embedded-form-disclaimer {
	color: #8A989D;
	text-align: center;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
}
* + .embedded-form-disclaimer {
	margin-top: 12px;
}
.embedded-form-background {
	display: block;
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.embedded-form-background img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
@media (max-width: 1200px) {
	.embedded-form {
		max-width: 620px;
	}
}
@media (max-width: 768px) {
	.embedded-form {
		padding: 48px 20px;
		margin-left: auto;
	}
	.embedded-form-title {
		font-size: 24px;
		line-height: 28px;
	}
}
@media (max-width: 500px) {
	.embedded-form-wrap {
		padding: 38px 0;
	}
	.embedded-form {
		padding: 24px 20px;
	}
}