html, body
{
	margin: 0;
	padding: 0;

	font-family: 'Montserrat', sans-serif;
	background: #ffffff;
}

img
{
	display: block;

	margin-left: auto;
	margin-right: auto;

	margin-top: 20px;
	margin-bottom: 20px;
}

div.wrapper
{
	display: block;

	margin-left: auto;
	margin-right: auto;

	max-width: 600px;

	padding: 20px;

	border: 1px solid #e0e0e0;
	border-radius: 15px;
	background: #f4f2f0;

	box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
}

label
{
	display: inline-block;

	width: 180px;
}

h1
{
	color: #F6C000;
	font-size: 1.5rem;
}

hr
{
	margin: 40px 0;
}

input
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;

	min-width: 240px;
	margin-bottom: 25px;
}

input[type=submit]
{
	min-width: 248px;

	background: #F6C000;
	color:#000000;
	border: 0;

	padding: 10px 0;

	text-transform: uppercase;
	cursor: pointer;
}

form small
{
	padding-left: 10px;
	font-style: italic;
	color: #404040;
}

@media screen and (max-width: 600px)
{
	div.wrapper
	{	
		border-radius: 0;
		border: 0;

		border-top: 1px solid #e0e0e0;
		border-bottom: 1px solid #e0e0e0;	
	}

	form small
	{
		padding-left: 0;
		display: block; 
		position: relative;
		bottom: 25px;
	}

	br.aa
	{
		display: none;
	}

	input:not(input[type=submit])
	{
		font-size: 24px !important;
	}

	input
	{
		padding: 5px;
	}
}



@media screen and (max-width: 468px)
{
	input
	{
		width: calc(100% - 20px);
	}

	input[type=submit]
	{
		width: calc(100% - 10px);

		padding-top: 20px;
		padding-bottom: 20px;
	}

}