html, body
{
	margin: 0; padding: 0;
	font-family: "Open Sans", "Noto", "Ubuntu", Verdana, Tahoma, Arial, Sans-Serif;
	background: #020202;
	color: #f5f5f5;
}

#auth-form
{
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;

	width: 400px;

	/* -moz-, -webkit-, -ms-? */
	transform: translate(-50%, -50%);
}

img
{
	height: 100px;
	display: block;
	margin: 0 auto;
	margin-bottom: 20px;
}

input
{
	display: block;
	width: 100%;
	font-family: "Open Sans", "Noto", "Ubuntu", Verdana, Tahoma, Arial, Sans-Serif;
	font-size: 12pt;
	color: #f5f5f5;
	background: #1a1a1a;
	margin-bottom: 5px;
	border: none;

	box-sizing: border-box;
	padding: 5px;
}

input[type="text"], input[type="password"]
{
	background: transparent;
	border-bottom: 1px solid #707070;
}

input[type="text"]:focus, input[type="password"]:focus
{
	border-bottom: 1px solid #00a2e8;
}

input[type="submit"]
{
	cursor: pointer;
}