
/*Balises génériques*/

body {
	color: #3f3f3f;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	background: url(bg/bg.jpg) top center no-repeat #2c2c2c;
}

#conteneur {
	margin: 28px auto;
	width: 400px;
	padding: 30px;
	border: 1px solid #383838;
}

/*Couleurs pour les champs obligatoires*/

input, textarea:required {
	background-color: #cbcacb;
	color: #fff;
}

/*input et textarea*/

input:not([type="submit"]), textarea { /*tous les input sauf submit*/
	display: block;
	width: 380px;
	padding: 4px 8px;
	border: 1px dashed #DBDBDB;
	color: #111;
	font-size: 14px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-mouz-border-radius: 2px;
	/*on définit les transitions transitions des couleurs au survol*/
	transition:background 0.2s linear,
	box-shadow 0.6s linear;
	transition:background 0.2s linear,
	-webkit-box-shadow 0.6s linear;
	-moz-transition:background 0.2s linear,
	box-shadow 0.6s linear;
	-o-transition:background 0.2s linear,
	box-shadow 0.6s linear;
}
	/*on définit à quel moment se feront les transitions: focus*/
input:not([type="submit"]):focus, textarea:focus {
	background: #f7f7f7;
	border: dashed 1px #969696;
	color: #000;
}
	/*definir une hauteur au champs input*/
input:not([type="submit"]) {
	height: 20px;
}

/*les placeholders*/

input:-moz-placeholder, textarea:-moz-placeholder {
	color: #848484;
	font-style: italic;
}

textarea {
	min-height: 150px;
	resize: vertical;  /*permet d'augmenter la taille de la fenetre message en vertical slmt*/
}

/*les labels*/

label {
	color: #7f7f7e;
	transition: color 0.5s ease;
	-webkit-transition: color 0.5s ease;
	-moz-transition: color 0.5s ease;
}

label:hover {
	color: #fff;
}

p {
	margin-bottom: 20px;
}

/*la phrase de notification*/

.indication {
	color:#878787;
	font-size: 12px;
	font-style: italic;
	text-align: right;
}

/*l'étoile de required*/

.required {
	color: #ff0380;
}

/*le bouton*/

input[type=submit]{
	margin-left: 235px;
	cursor: pointer;
	color: #767676;
	font-size: 18px;
	padding: 10px 4px;
	border: 1px solid #e0e0e0;
	background-color: #f8f8f8;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	transition:all 0.2s linear;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-o-transition:all 0.2s linear;
}

input[type=submit]:hover {
	color: #ff0380;
	border-color: #cecece;
	background: #f4f4f4;
	box-shadow: 0px 1px 1px #fff inset,
	0 0 0px 3px #e0e0e0; /*inset c'est ombre interne et la ligne en dessous definie l'ombre externe*/
	-webkit-box-shadow: 0px 1px 1px #fff inset,
	0 0 0px 3px #e0e0e0;
	moz-box-shadow: 0px 1px 1px #fff inset,
	0 0 0px 3px #e0e0e0;
	}

/*le numero de tel en bas*/

.gris {
	width: 460px;
	text-align: left;
	margin: -25px auto 0 auto;
	color: #777 !important;
	font-size: 12px;
	font-style: italic;
}