body
{
	margin: 0;
	padding: 0;
	background-image: url(bg.png);
	font-family: sans-serif;
	background-size: 220%;
}



.loginbox
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 350px;
	height: 420px;
	padding: 5px 40px;
	box-sizing: border-box;
	background: rgba(0,0,0,.50);
	border-radius: 30px;
}
.icon
{
	margin: 0;
	padding: 0 0 20px;
	text-align: center;
}
h2
{
	margin: 0;
	padding: 0 0 20px;
	color: black;
	text-align: center;
}

.loginbox p
{
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #fff;
}
.loginbox input
{
	width: 100%;
	margin-bottom: 30px;

}
.loginbox input[type='text']
{
	border: none;
	border-bottom: 2px solid #fff;
	background: transparent;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 10px;
}
.loginbox input[type='password']
{
	border: none;
	border-bottom: 2px solid #fff;
	background: transparent;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 10px;
}
::placeholder
{
	font-size: 10px;
	color: rgba(255,255,255,.5);
}
.loginbox input[type='submit']
{
	border: none;
	border-bottom: 4px solid #3366FF;
	background: #3366FF;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	border-radius: 20px;
}
.loginbox input[type='submit']:hover
{
	background: #00FF00;
	color: #262626;
}
.loginbox a
{
	font-weight: bold;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}