/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none;
	}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* Page */
html {
background : #eee;
}
	body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 62.5%;
	background : #eee;
	color:#6f7d81;
	}
		.container{
		width:100%;
		font-size:.9rem;
		line-height:1.2rem;
		}
			.standard-width {
			max-width: 950px;
			margin-left : auto;
			margin-right: auto;
			}

/* Formulaire */
form {
margin: 0 auto;
width:90%;
max-width: 500px;
}

	form > ul  {
	list-style-type: none;
	}

	form > ul > li {
	padding: 5px 0;
	}

	label {
	display: block;
	color:#5094b3;
	font-size:1.4rem;
	line-height:1.6rem;
	position: relative;
	}
	
	input[type="text"], input[type="password"], input[type="submit"], textarea {
	display: block;
	width:100%;
	transition:all 0.2s linear;
	padding:0.5rem;
	box-sizing:border-box;
	border: 2px solid rgba(218, 225, 229, 1);
	background: rgba(218, 225, 229, .5);
	}

	input[type="text"]:hover, input[type="password"]:hover, textarea:hover {
	border-color:#8cd6ef;
	}

	input[type="text"]:focus, input[type="password"]:focus, input[type="submit"]:focus, textarea:focus {
	border-color:#306B8A;
	background: #fff;
	box-shadow: 0px 0px 3px 0px rgba(6, 137, 191, 1);
	outline:none;
	}

	input[type="text"]:active, input[type="password"]:active, input[type="submit"]:active, textarea:active {
	outline:none;
	}

	/*.InlineBlock label, .InlineBlock input{
	display: inline-block;
	}*/

	.InlineBlock {
	display: inline-block;
	}

.cmdValid{
text-align:center;
}

	input[type="submit"] {
	display:inline-block;
	margin:1rem 0;
	padding:0.5rem 1.5rem;
	border: solid 2px #306B8A;
	background:#12597A;
	color:#fff;
	/*text-shadow:0px 2px #0087BE;*/
	width: auto;
	font-size:1.4rem;
	line-height:1.6rem;
	cursor: pointer;
	}

		input[type="submit"]:hover {
		border-color: #306B8A;
		color:#12597A;
		}


/* Buttons */
.btn {
display: inline-block;
text-align: center;
text-transform: uppercase;
padding:.4rem;
text-decoration: none;
font-size:1.2rem;
background: blue;
color:#fff;
transition: all .2s;
background-color:#000;
background-image: -moz-linear-gradient(top,  rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
background-image: -webkit-linear-gradient(top,  rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
background-image: linear-gradient(to bottom,  rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}
.btn:hover {
background-color: #8CD6EF;
color:#fff;
}

/* Validation formulaire */
.error input[type="text"], .error input[type="password"], .error input[type="submit"], .error textarea {
border-color: #c9000e;	
}
.error span.error {
color: #c9000e;		
}
.success label:before {
content : '';
position: absolute;
bottom:3px;  right:0;
height:15px;	
width: 5px;
transform: rotate(45deg);
border: solid #02c106;
border-width: 0 2px 2px 0;	
}
