body
{
	display: flex;
	justify-content: center;
	align-items: center;
	background: gray;
	_background-image: url('/login/background.png');
	background-size: cover;
	background-position: center center;
	height: 100%;
}

main
{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

h2
{
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

img:first-child
{
	width: 134px;
	margin: 0 auto 10px;
	display: block;
}

button
{
	width: 100%;
	padding: 1rem;
	border-radius: 3px;
	font-size: 16px;
	min-width: 180px;
	display: inline-block;
	cursor: pointer;
	position: relative;
	_background-color: #ffb7d7;
	_border: 1px solid #ffb7d7;
}

a
{
	color: #000000;
	font-size: 14px;
}

section
{
	max-width: 400px;
	padding-right: 15px;
	padding-left: 15px;
	padding-top: 50px;
	margin: auto;
}

section > div
{
	margin-top: 1rem;
	margin: 0 auto 25px;
	padding: 40px 40px;
	background: white;
	background-clip: border-box;
	box-shadow: 0px 0px 75px rgba(0, 0, 0, 0.26);
}

section > div > div
{
	text-align: center;
	padding-top: 25px;
}

label
{
	width: 100%;
	display: inline-block;
	margin-bottom: 2rem;
	box-sizing: border-box;
}

input[type=email]
	, input[type=password]
	, input[type=username]
{
	text-indent: 24px;
	height: 44px;
	direction: ltr;
	width: 100%;
	margin-bottom: 20px;
	display: block;
	font-size: 16px;
	box-sizing: border-box;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	border: 2px solid #000000;
	padding: 0.375rem 0.75rem;
	border-radius: 2px;
	padding: 1.5rem 1rem;
}

input[type=email]
	, input[type=username]
{
	background: url(/login/envelope-closed.svg) no-repeat scroll 11px 16px;
	background-repeat: no-repeat;
	background-size: 17px;
}

input[type=password]
{
	background: url(/login/lock-locked.svg) no-repeat scroll 11px 16px;
	background-repeat: no-repeat;
	background-size: 17px;
}

.icon
{
	width: 20px;
	height: 20px;
	vertical-align: middle;
}





