html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	min-height: 100%;
	font-family: Arial, Helvetica, sans-serif;
}

h1{
	font-size: 21px;
}

.wrapper {
	min-width: 100%;
	min-height: 100%;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.app{
	width: 100%;
	max-width: 772px;
	margin: 5px;
}

.app__content {
	border: 2px solid #CD223C;
	border-top: none;
	padding: 28px;
	display: flex;
}

.app__image {
	border: 2px solid #CD223C;
	border-bottom: none;
	background-image: url('/images/header.jpg');
	background-position: top center;
	background-size: cover;
	height: 302px;
}

.logo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 50px;
}

.logo .logo__image{
	width: 100%;
	max-width: 280px;
}

.aspNetHidden{
	display: none;
}

.form form {
	display: flex;
}

	.form form * {
		flex: 1;
	}

	.form form p {
		font-size: 17px;
		line-height: 33px;
		margin: 0;
	}

.textbox {
	border: 1px solid #7a7a7a;
	height: 33px;
	width: 168px;
	font-size: 17px;
	text-align: center;
	margin: 0 10px;
	text-transform: uppercase;
}

.button {
	background-color: #ec223c;
	border: 1px solid #7a7a7a;
	color: #fff;
	height: 33px;
	font-size: 17px;
}

.error {
	padding: 5px;
	background-color: #ec223c;
	color: #fff;
	text-align: center;
}

.app__footer{
	font-size: 10px;
	color: #3c3c3c;
	text-align: right;
}

@media only screen and (max-width: 770px) {
	.app__content {
		flex-direction: column;
		align-items: center;
	}

	.logo{
		margin-right: 0;
	}
}

@media only screen and (max-width: 535px) {
	.wrapper{
		align-items: normal;
	}

	.form form {
		display: flex;
		flex-direction: column;
	}

	.textbox {
		margin: 10px 0;
		width: auto;
	}
}