@charset "utf-8";
/* CSS Document */

.frm_inscription{
	width:400px;
	margin: auto;
	text-align: left;

}

.frm_inscription input{
	width:100%;
	font: normal normal 18px/18px Verdana, Arial, Helvetica, sans-serif;
	color: #555;
	border: 2px solid #cccccc;
    border-radius: 4px;
	height: 35px; 
	padding: 5px 10px; 
	background-color: #ECE8E8;	
}

.frm_inscription input:focus { 
     border: 2px solid #0b40a8;
	-webkit-box-shadow: -1px 10px 39px 0px rgba(102,102,102,1);	
	-moz-box-shadow: -1px 10px 39px 0px rgba(102,102,102,1);	
	box-shadow: -1px 10px 39px 0px rgba(102,102,102,1);
} 

.frm_inscription p.Submit{
	width: 100%;
	text-align:center;
	display: inline-block;
}

.frm_inscription p.Submit input{
	width: 200px;
}

.frm_inscription p.Submit input:hover{
     border: 2px solid #0b40a8;
	-webkit-box-shadow: -1px 10px 39px 0px rgba(102,102,102,1);	
	-moz-box-shadow: -1px 10px 39px 0px rgba(102,102,102,1);	
	box-shadow: -1px 10px 39px 0px rgba(102,102,102,1);
	color: #0b40a8;
}


@media screen and (min-width: 1600px) 
{
    /* Tout ce qui est écrit plus haut */
}
/*@media screen and (min-width: 1024px) and (max-width: 1599px)*/
@media all and (min-width: 1024px) and (max-width: 1599px)
{


}

@media screen and (min-width: 480px) and (max-width: 1023px)
{
	.frm_inscription{
		width:90%;
	}
	
	.frm_inscription input{
		height: 55px; 
	}
}

@media screen and (max-width: 479px)
{
    /* Rédigez vos propriétés CSS ici */
}