.Login
	{
	width : 100%;
	align-items : center;
	justify-content : center;
	}
	
.LoginInput
	{
	width : 30%;
	margin : 20px 0px 40px 0px;
	padding : 20px 20px 20px 20px;
	
	font : normal 16px Calibri;
	color : #434343;
	line-height : 1.5;
	
	border-radius : 3px;
	border : 1px solid #e2e2e2;
	}
	
.LoginInput:hover
	{
	border : 1px solid #999999;
	}		
		
.LoginInput:focus
	{
	outline : none;
	border : 1px solid #50aec8;
	}		
	
::placeholder 
	{
	color : #999999;
	}
	
	
.LoginLink
	{
	font : normal 16px Calibri;
	color : #999999;
	line-height : 1.5;
	margin : 40px 0px 30px 0px;
	
	cursor : pointer;
	}
	
.LoginLink:hover
	{
	text-decoration : underline;
	}


/* Smartphone */
@media only screen and (max-width:480px)
	{
	.LoginInput
		{
		width : 85%;
		}
		
	.LoginLink
		{
		text-align : center;
		}
	}

/* Tablet	*/
@media only screen and (min-width:481px) and (max-width:800px)
	{	
	}