/* Couleur zones de texte lorsqu'elles ont le focus */
.input-field input[type=text]:focus {
 border-bottom: 1px solid #1b5e20 !important;
 box-shadow: 0 1px 0 0 #1b5e20 !important;}
.input-field input[type=number]:focus {
 border-bottom: 1px solid #1b5e20 !important;
 box-shadow: 0 1px 0 0 #1b5e20 !important;}
 .input-field input[type=password]:focus {
 border-bottom: 1px solid #1b5e20 !important;
 box-shadow: 0 1px 0 0 #1b5e20 !important;}

 /*code  permettant de changer la couleur de la zone de text ayant comme classe erreur */
input[type=text].erreur{
border-bottom: 1px solid red !important;
box-shadow: 0 1px 0 0 red !important;
}

/* Couleur labels lorsqu'ils ont le focus  */
.input-field input:focus + label {
color: #1b5e20 !important;}

/* icon prefix focus color */
.input-field .prefix.active {
 color: #1b5e20;}

/*code  permettant de changer la couleur de la zone de text ayant comme classe erreur */
input[type=password].erreure{
border-bottom: 1px solid red !important;
box-shadow: 0 1px 0 0 red !important;
}

/*Couleur des boutons */
.btn{
background-color:#1b5e20; 
color:  white;
}
.btn:hover{
background-color:white;
color:  #1b5e20;
}
body
{
	background-position: center center;
	background-repeat:  no-repeat;
	background-attachment: fixed;
	background-size:  cover;
	background-color: #999;
}