html,
body {
	width: 100%;
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	position: relative;
	font-family: 'Poppins', sans-serif;
	background-image: url('bg.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-backdrop-filter: blur(4px);
			backdrop-filter: blur(4px);
}
body::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255, 0.6);
}
@media only screen and (min-width: 992px) {
	body::before {
		background: rgba(255,255,255, 0.1);
	}
}
.container {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	height: 100%;
	width: 100%;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	padding: 3rem;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	font-size: 1.6rem;
	color: #003;
}
.logo {
	display: inline-block;
	height: auto;
	width: auto;
	max-width: 250px;
	margin-bottom: 2.6rem;
}