.header
{
	
	position: relative;
	display: table;
	margin: auto;	
	
	width: 100%;
	height: 120px;
	
	
	box-sizing: border-box;
	
	-border: 1px solid black;
	
}


.header .container
{
	
	position: relative;
	display: table;
	margin: auto;
	
	width: 90%;
	height: 100%;
	
	line-height: 120px;
	text-align: center;
	
	box-sizing: border-box;
	background-color: #f5f5f5;
	
	-border: 1px solid black;
	
}




.header a			{font-family: Helvetica; font-size: 24px; color: #101010; font-weight: normal; text-decoration : none;}
.header a:link 		{font-family: Helvetica; font-size: 24px; color: #101010; font-weight: normal; text-decoration : none;}    	/* unvisited link */
.header a:hover 	{font-family: Helvetica; font-size: 24px; color: #101010; font-weight: normal; text-decoration : none; -webkit-tap-highlight-color: transparent;}   	/* mouse over link */   
.header a:active 	{font-family: Helvetica; font-size: 24px; color: #101010; font-weight: normal; text-decoration : none;}  		/* selected link */
.header a:visited 	{font-family: Helvetica; font-size: 24px; color: #101010; font-weight: normal; text-decoration : none;} 		/* visited link */




.content
{
	
	position: relative;
	display: table;
	margin: auto;	
	
	width: 100%;
	
	
	box-sizing: border-box;
	-background-color: orange;
	
	-border: 1px solid black;

}



.content .container
{
	
	position: relative;
	display: table;
	margin: auto;		
	
	width: 100%;

	box-sizing: border-box;
	background-color: #ffffff;
	
	-border: 1px solid black;

}



.message
{
	position: relative;
	display: table;
	margin: auto;
	
		
	width:100%;
	height: 42px;
	
	padding: 0px;
	margin-bottom: 10px;
	
	text-align: center;
	
	
	-border: 1px solid gray;
}


.message .error
{
	position: relative;
	display: table;
	margin: auto;
	
	width:90%;
	line-height: 42px;
	
	font-size: 18px;
	color: #e74c3c;
	font-weight: normal;
	
	background-color: #ffeaee;
	border-radius: 10px;	
	
	border: 1px solid red;
}



.footer
{
	position: relative;
	display: table;
	margin: auto;	
}



.footer .container
{
	position: relative;
	display: table;
	margin: auto;	
}



.signin
{
	
	position: relative;
	display: table;
	margin: auto;
	
	width: 100%;
	max-width: 480px;
	-height: 480px;
	
	
	padding: 10px 20px 20px 20px;
	
	box-sizing: border-box;
	
	-border: 1px solid red;
	-background-color: gray;
	

}


/* Screen Between: 1px - 400px */
@media only screen and (max-width: 400px)
{
	

.header
{
	height: 80px;	
}


.header .container
{
	line-height: 80px;	
}



.message
{

	width:100%;
	height: 42px;
	
}


.message .error
{
	
	width:90%;
	line-height: 42px;
	
	font-size: 18px;


}



.signin
{
	
	width: 100%;
	padding: 10px 20px 20px 20px;


}	
	

}





/* Screen Between: 1px - 320px */
@media only screen and (max-width: 320px)
{
	

.header
{
	height: 32px;	
}


.header .container
{
	line-height: 32px;	
}


.header a			{font-family: Helvetica; font-size: 18px; color: #101010; font-weight: normal; text-decoration : none;}
.header a:link 		{font-family: Helvetica; font-size: 18px; color: #101010; font-weight: normal; text-decoration : none;}    	/* unvisited link */
.header a:hover 	{font-family: Helvetica; font-size: 18px; color: #101010; font-weight: normal; text-decoration : none; -webkit-tap-highlight-color: transparent;}   	/* mouse over link */   
.header a:active 	{font-family: Helvetica; font-size: 18px; color: #101010; font-weight: normal; text-decoration : none;}  		/* selected link */
.header a:visited 	{font-family: Helvetica; font-size: 18px; color: #101010; font-weight: normal; text-decoration : none;} 		/* visited link */


.message
{
		
	width:100%;
	height: 32px;

}


.message .error
{

	
	width:90%;
	line-height: 32px;
	
	font-size: 14px;

}

 
	
.signin
{
	
	width: 100%;
	padding: 10px 20px 20px 20px;


}	
	

}