body {
    margin: 0;
    padding: 0;
    /*background:url("background2.jpg");*/
    background-size: cover;
    background-attachment: fixed;
    font-family: sans-serif;
}

.loginBox
{
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	width:350px;
	height:420px;
	padding:80px 40px;
	box-sizing: border-box;
	background:rgba(0,0,0,0.5) ;
	
}



h2
{
	margin:0;
	padding:0 0 20px;
	color:#1E90FF;
	text-align:center;
} 



.loginBox p
{
	padding:0;
	margin:0;
	font-weight:bold;
	color:#fff;
	
} 


.loginBox input
{
	width:100%;
	margin-bottom: 20px; 
}

.loginBox input[type="text"], .loginBox input[type="password"]
{
	border: none;
	border-bottom: 1px solid #fff;
	background: transparent;
	outline:none;
	height:40px;
	color:#fff;
	font-size: 16px;
	
	
}

.Message {
    border: none;
    outline: none;
    /*height: 40px;*/
    color: #fff;
    font-size: 16px;
    background: rgba(255,38,126,0.8);
    border-radius: 5px;
    margin-bottom: 40px;
    padding-left: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    vertical-align: middle;
    /*line-height: 90px;*/
}

.loginBox input[type="submit"] {
    border: none;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 16px;
    /*background: rgb(255,38,126);*/
    background: #1E90FF;
    cursor: pointer;
    border-radius: 20px;
}


.loginBox input[type="submit"]:hover
{
	background: #005db7;
    font-weight:600;
	/*color: #262626;*/
}
 
 
 

.loginBox a
{
	color: #fff;
	font-size:14px;
	font-weight:bold;
} 


::placeholder
{
	color:rgba(255,255,255,0.5); 
}


.user
{
	width:100px;
	height:100px; 
	overflow:hidden;
	position:absolute;
	top:calc(-100px/2);
	left:calc(50% - 50px);
	border-radius:50%;
}
 

