@charset "utf-8";

#login
{
	width:500px;
	height:165px;
	background: url(img/fondConnexion.png) no-repeat;
	margin:auto;	
	padding-top:100px;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
	background-color: white;
}

#login form
{
	width:300px;
	margin-left:175px;
}

#inputs input
{
    background: #f1f1f1 url(img/login-sprite.png) no-repeat;
    padding: 5px 15px 5px 30px;
    margin: 0 0 10px 0;
    width: 200px; /* 353 + 2 + 45 = 400 */
    border: 1px solid #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
    -webkit-box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
    box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
}

#username
{
    background-position: 5px -10px !important;
}

#password
{
    background-position: 5px -60px !important;
}

#inputs input:focus
{
    background-color: #fff;
    border-color: #e8c291;
    outline: none;
    -moz-box-shadow: 0 0 0 1px #e8c291 inset;
    -webkit-box-shadow: 0 0 0 1px #e8c291 inset;
    box-shadow: 0 0 0 1px #e8c291 inset;
}

fieldset
{
    border: 0;
    padding: 0;
    margin: 0;
}

#actions
{
    margin: 10px 0 0 0;
}

#submit
{		
    background-color: #d4810c;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#d4810c), to(#e59a30));
    background-image: -webkit-linear-gradient(top, #d4810c, #e59a30);
    background-image: -moz-linear-gradient(top, #d4810c, #e59a30);
    background-image: -ms-linear-gradient(top, #d4810c, #e59a30);
    background-image: -o-linear-gradient(top, #d4810c, #e59a30);
    background-image: linear-gradient(top, #d4810c, #e59a30);
    
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    
   /*text-shadow: 0 1px 0 rgba(255,255,255,0.5);*/
    
     -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
     -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
     box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;    
    
    border-width: 1px;
    border-style: solid;
    border-color: #d69e31 #e3a037 #d5982d #e3a037;

    float: left;
    height: 35px;
    padding: 0;
    width: 120px;
    cursor: pointer;
    font: bold 15px Arial, Helvetica;
    color: #ffffff;
}

#submit:hover,#submit:focus
{		
    background-color: #e59a30;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#e59a30), to(#d4810c));
    background-image: -webkit-linear-gradient(top, #e59a30, #d4810c);
    background-image: -moz-linear-gradient(top, #e59a30, #d4810c);
    background-image: -ms-linear-gradient(top, #e59a30, #d4810c);
    background-image: -o-linear-gradient(top, #e59a30, #d4810c);
    background-image: linear-gradient(top, #e59a30, #d4810c);
}	

#submit:active
{		
    outline: none;
   
     -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
     -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;		
}

#submit::-moz-focus-inner
{
  border: none;
}