html,
body {
	min-height: 100%;
}
body {
	align-items: center;
	background: #f4f7fb;
	color: #1f2937;
	display: flex;
	font-family: Arial, sans-serif;
	justify-content: center;
	margin: 0;
}
.bg-check {
	max-width: 420px;
	padding: 32px 20px;
	text-align: center;
}
.bg-check__spinner {
	animation: bg-spin 0.9s linear infinite;
	border: 3px solid #d7e0ea;
	border-radius: 50%;
	border-top-color: #2b7fff;
	height: 42px;
	margin: 0 auto 18px;
	width: 42px;
}
.bg-check__title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 10px;
}
.bg-check__message,
.bg-check__error,
.bg-check__noscript {
	font-size: 15px;
	line-height: 1.45;
	margin: 0;
}
.bg-check__error,
.bg-check__noscript {
	color: #b42318;
	margin-top: 14px;
}
@keyframes bg-spin {
	to {
		transform: rotate(360deg);
	}
}
	