@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
body{
	margin: 0;
}
h1,h2,h3,h4,h6,p,form,button,input,select,a,textarea,.error{
	font-family: 'Montserrat', sans-serif;
	color: #fff;
}
h1,h2,h3,h4,h6{
	font-weight: 600;
}
h2{
	color: #f1f1f1;
}
input{
	padding: 15px 10px;
	border: none;
	border-radius: 0;
	background-color: rgba(0,0,0,.5);
	width: 100%;
	text-align: center;
	font-size: 1.2em;
	box-sizing: border-box;
	margin: 2px auto;
	-webkit-transition: background-color 100ms ease-in-out;
	-ms-transition: background-color 100ms ease-in-out;
	transition: background-color 100ms ease-in-out;
}
input:hover{
	background-color: rgba(0,0,0,.6);
}
body>div{
	display: flex;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.bg{
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-position: center;
	background-size: cover;
	z-index: 1;
	filter: blur(4px);
}
.overlay{
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.7);
}
.content{
	text-align: center;
	z-index: 2;
}
button{
	padding: 15px 10px;
	border-radius: 0;
	text-align: center;
	font-size: 1.2em;
	box-sizing: border-box;
	margin: 2px auto;
	background-color: rgba(241, 68, 68,.6);
	border: none;
	cursor: pointer;
	color: #fff;
	-webkit-transition: background-color 100ms ease-in-out;
	-ms-transition: background-color 100ms ease-in-out;
	transition: background-color 100ms ease-in-out;
	width: 100%;
}
button:hover{
	background-color: rgba(241, 68, 68,.9);
}
form{
	max-width: 470px;
}
.error,.invalid-feedback {
	padding: 5px;
    display: inline-block;
}
em{
	font-style: normal;
}