form
{
	display: inline-block;
	width: 60%;
	max-width: 400px;
	margin: 0em;
	padding: 1.25em;
	box-sizing: border-box;
	background-color: #FFFFFF;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	border-radius: 0.875em;
	text-align: center;
}

form label
{
	display: inline-block;
	width: 100%;
	margin-bottom: 1.5em;
	text-align: left;
	cursor: pointer;
}

form label span
{
	display: inline-block;
	width: 100%;
	margin: 0em;
	font-family: Helvetica;
	font-size: 0.875em;
	font-weight: bold;
	color: #000000;
}

form label input
{
	width: 100%;
	height: 1.75em;
	font-family: Helvetica;
	font-size: 1.5em;
	font-weight: bold;
	color: #000000;
}

form button
{
	display: block;
	width: 100%;
	height: 1.75em;
	margin: 0em auto 0.5em;
	background-color: #FF0000;
	border: 0.125em;
	border-style: solid;
	border-color: #E31E24;
	font-family: Helvetica;
	font-size: 1.5em;
	font-weight: bold;
	color: #FFFFFF;
	cursor: pointer;
}

form a
{
	line-height: 1.5em;
	font-family: Helvetica;
	font-size: 1.0em;
	color: #FF0000;
}

form .error
{
	width: 100%;
	margin: 0.75em 0em;
	padding: 0em 0.375em;
	box-sizing: border-box;
	background-color: #FF6F6F;
	border-width: 0.2em;
	border-radius: 0.375em;
	border-style: solid;
	border-color: #E32020;
	text-align: center;
	line-height: 1.9em;
	font-family: Helvetica;
	font-size: 0.875em;
	font-weight: bold;
	color: #8B0000;
}

form .success
{
	width: 100%;
	margin: 0.75em 0em;
	padding: 0em 0.375em;
	box-sizing: border-box;
	background-color: #9ACD32;
	border-width: 0.2em;
	border-radius: 0.375em;
	border-style: solid;
	border-color: #006400;
	text-align: center;
	line-height: 1.9em;
	font-family: Helvetica;
	font-size: 0.875em;
	font-weight: bold;
	color: #006400;
}

.wrapper
{
	display: block;
	width: 100%;
	text-align: center;
}

.spacer
{
	display: block;
	width: 100%;
	height: 30%;
}

.main
{
	background: none;
	box-shadow: none;
}

@media screen and (max-width: 800px)
{
	form label span
	{
		font-size: 0.75em;
	}

	form label input
	{
		font-size: 1.25em;
	}

	form button
	{
		font-size: 1.25em;
	}

	form a
	{
		font-size: 0.875em;
	}
	
	form .error
	{
		border-width: 0.15em;
		font-size: 0.75em;
	}
	
	form .success
	{
		border-width: 0.15em;
		font-size: 0.75em;
	}
}

@media screen and (max-width: 480px)
{
	form
	{
		width: 100%;
		height: 100%;
		padding: 1.25em 0em;
		box-shadow: none;
		border-radius: 0em;
	}
	
	form label
	{
		width: 80%;
	}

	form button
	{
		width: 80%;
	}
	
	form .error
	{
		margin: 0.75em auto;
		width: 80%;
	}
	
	form .success
	{
		margin: 0.75em auto;
		width: 80%;
	}
	
	.spacer
	{
		display: none;
	}
}