/* CSS Document */
body{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	background-color:#eee;
}

.loginbox{
	width: 320px;
	height: 420px;
	background:#fff;
	color: #000;
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	padding: 70px 30px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0, 0.1);
}
.avatar{
	width: 150px;
	height: 150px;
	border-radius: 50%;
	position: absolute;
	top: -75px;
	left: calc(50% - 75px);
	/*	border: 3px solid #ff6600;	*/
}

h1{
	margin-top: 10px;
	padding: 0 0 10px;
	text-align: center;
	font-size: 22px;
}

.loginbox p{
	margin: 0;
	padding: 0;
	font-weight: bold;
}

.loginbox input{
	width: 100%;
	margin-bottom: 20px;
}

.loginbox input[type="text"], input[type="password"]
{
	border: none;
	border-bottom: 1px solid #ccc;
	background: transparent;
	outline: none;
	height: 40px;
}

.loginbox input[type="submit"]
{
	border: none;
	outline: none;
	height: 40px;
	background: #0033cc;
	color: #fff;
	font-size: 18px;
	border-radius: 7px;
}
.loginbox input[type="submit"]:hover{
	background: #0099ff;
	border: 2px solid #3366ff;
	text-shadow: 1px 1px 2px #003366;
}


