* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "IBM Plex Sans", sans-serif;
	line-height: 120%;
}

.main {
	position: relative;
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 1, 21, 1);
}

.content {
	max-width: 740px;
	color: rgba(255, 255, 255, 1);
	text-align: center;
	padding: 30px;
	margin: 120px 20px;
	position: relative;
	z-index: 2;
	border: 3px solid rgba(104, 162, 235, 0.25);
	/* border-image-source: linear-gradient(99.08deg, rgba(104, 162, 235, 0.5) -4.81%, rgba(16, 19, 66, 0.5) 101.88%); */
	backdrop-filter: blur(6px);
	border-radius: 18px;
	h1 {
		font-weight: 600;
		font-size: 36px;
		margin-bottom: 10px;
	}
	h3 {
		font-size: 32px;
		font-weight: normal;
	}
}

.bg {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	pointer-events: none;
	user-select: none;
	z-index: 1;
}

.logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	border-bottom: 1px solid rgba(104, 162, 235, 0.25);
	padding: 20px;
	box-shadow: 0px 4px 10px 0px rgba(104, 111, 235, 0.14);
	z-index: 3;
}