html, body {
    margin:0;
    padding:0;
	background-color:#000;
	font-family:verdana;
}

div.container {
	width:100%;
	height:600px;
	display:flex;
	flex-direction: column;
	justify-content:center;
	align-items:center;
}

div.content div.forms {
	display:flex;
	justify-content:center;
}

div.button {
	
}

div.button a {
	color:#000;
	min-width:150px;
	height:50px;
	background-color:#FFF;
	margin-right:10px;
	border-radius:15px;
	padding:5px;
	text-align: center;
	display:block;
	text-decoration:none;
	line-height:50px;
	border:1px #FFF dashed;
}

div.button a:hover {
	background-color:#000;
	color:#FFF;
}

div.logo {
	display:flex;
	justify-content:center;
	width:100%;
}

div.content div.logo img {
	width:150px;
	justify-content:center;
}

div.content div.title {
	color:#FFF;
	font-size:3em;
	font-weight:bold;
}

div.content > * + * {
	margin-top:40px;
}