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

.main {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	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;
}

.blur-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	backdrop-filter: blur(8px);
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 1;
	pointer-events: none;
}
