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

/* Code fonts Google */
@import url('https://fonts.googleapis.com/css?family=Lato');

/* Colors */
.blue {color: #287fb8;}
.grille {color: #f1efea;}
.noir {color: #27374c;}
.orange {color: #ed6504;}
.white {color: #ffffff;}

/* CSS General */
body {
	padding: 0;
	border: 0;
	font-size: 100%;
	font-size:14px; 
	font-family: "Lato", sans-serif;
    -webkit-font-feature-settings: 'kern', 'liga', 'pnum';
    -moz-font-feature-settings: 'kern', 'liga', 'pnum';
    font-feature-settings: 'kern', 'liga', 'pnum';
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.5;
	background-image:url(../images/bdg_pages.png);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size:contain;
	/*background-size:100%;*/
	background-color: #9494c8 !important;
	margin: 5% auto;
	color: #27374c;
}

h1.h_titre {
	color: white;
    font-size: 56px;
	font-weight: lighter !important;
    line-height: 1.1;
    margin-bottom: 0.5em;
	text-align: center;
}
hr.h_white {
    background-color: #ffffff;
    border-width: 0;
    color: #27374c;
    height: 2px;
    width: 50px;
	margin-bottom: 2.5em;
}


/**  PAGE CONNEXION   **/
.logbox {
  padding: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

.logbox img, picture {
    margin-bottom: 1em;
	display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
	border: 0;
}
.logbox h3 {
	line-height: 1.2;
	/*font-size: 1.2em;*/
	font-weight: 500;
    margin: 0 0 0.75em 0;
	text-align: center;
}
.logbox hr {
	width: 80px;
	margin-bottom: 1em;
	height: 2px;
	border-width: 0;
	background-color: #ed1d67;
    color: #ed1d67;
	box-sizing: content-box;
}

.input {
  width: 90%;
  height: 50px;
  display: block;
  margin: 0 auto 15px;
  padding: 0 15px;
  border: none;
  border-bottom: 2px solid #36689a;
  color: #287fb8;
  text-align: center;
}
.input:focus {
  outline: none;
  border-bottom-color: #287fb8 !important;
}
.input:hover {
  border-bottom-color: #287fb8;
}
.input:invalid {
  box-shadow: none;
}

.pass:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
	box-shadow: 0 0 0 1000px white inset;
}

.inputButton {
  position: relative;
  width: 90%;
  height: 50px;
  display: block;
  margin: 30px auto 30px;
  color: white;
  background-color: #287fb8;
  border: none;
  -webkit-box-shadow: 0 5px 0 #ed1d67;
  -moz-box-shadow: 0 5px 0 #ed1d67;
  box-shadow: 0 5px 0 #ed1d67;
}
.inputButton:hover {
  top: 2px;
  -webkit-box-shadow: 0 3px 0 #ed6504;
  -moz-box-shadow: 0 3px 0 #ed6504;
  box-shadow: 0 3px 0 #ed6504;
}
.inputButton:active {
  top: 5px;
  box-shadow: none;
}
.inputButton:focus {
  outline: none;
}




/**
  MEDIA QUERIES
**/
@media (max-width: 480px) {
}
     
@media (max-width: 767px) {
	h1.h_titre {
    font-size: 3em;
}
}
     
@media (max-width: 979px) {
}
     
@media (min-width: 768px) and (max-width: 979px) {
}
     
@media (min-width: 980px) and (max-width: 1170px) {
}
     
@media (min-width: 1200px) {
}