html, body {
	height: 100vh;
	width: 100%;
}
body {
	font-family: 'Open Sans', sans-serif;
	background-color: #fff;
	background-image: none;
	background-size: auto;
	background-repeat: inherit;
	background-position: unset;
	margin: 0;
	padding: 0;
}
body > main {
	background-repeat: no-repeat;
	background-image: url('../img/login/cover-texture.png');
	background-position: 0 50%;
	background-size: cover;
	height: inherit;
	display: flex;
	flex-flow: column;
	align-content: center;
	align-items: center;
	justify-content: center;
}
main > div {
	width: 75%;
	padding: 1rem;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 0 1rem 0.25rem rgba(0,0,0,0.25);
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}
header {
	padding-bottom: 2rem;
	text-align: center;
}
section {
	text-align: center;
}
header > img {
	width: 75%;
	height: auto;
}
.mdl-textfield,
.mdl-selectfield {
	position: relative;
	font-size: 1rem;
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
	padding: 0 0 1rem;
	width: auto;
}
.mdl-textfield > span.mdl-textfield__error {
	position: relative;
	margin-top: 1rem;
}
.mdl-textfield input {
	color: #707070;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 200;
	padding-bottom: 0.5rem;
	border-radius: 0;
	border-bottom: 1px solid rgba(0,0,0,0.8) !important;
	font-family: "Open Sans", sans-serif;
}
label.mdl-textfield__label,
.mdl-textfield--floating-label.is-focused .mdl-textfield__label,
.mdl-textfield--floating-label.is-dirty .mdl-textfield__label {
	top: 0;
	position: relative;
	margin: 0.7rem 0 0;
	padding: 0;
	line-height: 1.2;
	font-size: .85rem;
	text-transform: uppercase;
	color: #707070 !important;
}
.mdl-button--white.mdl-button--white.mdl-button--raised,
.mdl-button--white.mdl-button--white.mdl-button--fab {
	color: white;
	background-color: #BE1F2E;
	font-size: 1em;
	padding: 1.15rem 3rem .85rem;
	line-height: 1;
	height: auto;
	width: auto;
	margin: 1rem auto !important;
	text-align: center;
}
.title.mdl-text--white {
	color: #707070;
	font-size: 1rem;
}
.title.mdl-text--white a {
	color: #BE1F2E;
}
*[id^=__lpform_] {
	display: none;
}

@media only screen and (min-width: 768px)  {
	body > main {
		background-position: -25% 50%;
		background-size: cover;
	}
	main > div {
		width: 300px;
	}
	main > div > * {
		width: 300px;
	}
}
@media only screen and (min-width: 1024px) {
	body > main {
		background-position: 150% 50%;
		background-size: contain;
	}
}
@media only screen and (min-width: 1199px) {
	body > main {
		background-position: 100% 50%;
	}
}
@media only screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	main > div {
		height: 275px;
	}
}