html, body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	font-family: arial;
	font-size: 12px;
}

#home {
	display: inline-block;
	position: relative;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

#home input {
	display: block;
	text-align: center;
	border: 0px;
	border-bottom: 1px solid #b7b7b7;
	margin: 20px 0px;
	box-shadow: none;
	width: 250px;
	font-size: 12px;
}

#home input:focus {
	outline:none;
}

#home .button {
	border: 1px solid black;
	padding: 5px 15px;
	display: inline-block;
	margin: 10px 0px;
	cursor: pointer;
	transition: all 0.5s;
	font-size: 12px;
}

#home .button:hover {
	background-color: black;
	color: white;
}