body
{
	background-color: #ECF0F1  ;
	padding: 0;
	margin: 0;
}

.body-login
{
	width: 300px;
	height: 240px;
	background-color: #D0D3D4;
	margin: 50px;

}
.body-title
{
	width: 300px;
	height: 50px;
	background-color: #27AE60;
	color: whitesmoke;
	display: block;

}
.body-title h2
{
	font-size: 20px;
	margin-top: 0;
	font-family: sans-serif;
	display: block;
}
.body-input
{
	width: 300px;
	height: 70px;
	display: block;

}
label
{
	display: block;
	color: #333;
	font-family: sans-serif;
}
.body-input input[type="text"]
{
	width: 200px;
	height: 30px;
	outline: none;
	border: none;
	font-family: sans-serif;
	font-size: 20px;
}
.body-input input[type="password"]
{
	width: 200px;
	height: 30px;
	outline: none;
	border: none;
	font-family: sans-serif;
	font-size: 20px;
}
.body-button
{
		width: 300px;
	height: 50px;
	display: block;
	background-color: #D0D3D4;
}
.body-button input[type="submit"]
{
	width: 200px;
	height: 30px;
	outline: none;
	border: none;
	font-family: sans-serif;
	font-size: 20px;
	background-color: #27AE60;
	color: whitesmoke;
	cursor: pointer;
}
.body-button input[type="submit"]:hover
{
	background-color: #333;
}

