body {
	margin: 0;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.main {
	width: 100%;
	height: 100%;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("/img/bg-step1.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media screen and (max-width: 998px) {
	.main {
		background-image: url("/img/bg-step1-dec.png");
	}
}
@media screen and (max-width: 756px) {
	.main {
		background-image: url("/img/bg-step1-tablet.png");
	}
}
@media screen and (max-width: 556px) {
	.main {
		background-image: url("/img/bg-step1-mob.png");
	}
}

.form-wrapper {
	max-width: 450px;
	margin-inline: auto;
	padding-inline: 16px;
	position: relative;
	z-index: 2;
	box-shadow: 0 4px 10px 0 rgba(11, 230, 175, 0.1);
}

.blur-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100dvw;
	height: 100dvh;
	backdrop-filter: blur(13px);
	box-shadow: -33px -33px 50px 0 rgba(255, 255, 255, 0.15) inset,
		33px 33px 50px 0 rgba(255, 255, 255, 0.15) inset;
	z-index: 1;
	pointer-events: none;
}
