/* POLICES */
.defaultPolice {
  font-family: "proxima-nova-extra-condensed", "Open Sans Condensed", sans-serif;
  font-size: 18px;
}
.proximaLight {
  font-style: normal;
  font-weight: 300;
}
/*strong {
	font-family: "proxima-nova","Open Sans Condensed",sans-serif;
	font-style: normal;
	font-weight: bold;
}
*/
html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  background-color: #34573b;
}
main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .logoAgence {
  /***width:500px;
		height:280px;***/

  height: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto 0 auto;
}
main .logoAgence .logo {
  width: 100%;
  max-height: 100px;
  height: 100%;
  position: relative;
  max-width: 510px;
}
main .logoAgence img {
  display: flex;
  margin: 0 auto;
  width: 100%;
}
main form {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 50%;
  width: 100%;
  float: left;
  position: relative;
  margin: 0px auto 0 auto;
}
main form section {
  width: 100%;
  color: #eee8dd;
  text-align: center;
  margin: 0 0 20px 0;
  font-size: 28px;
  line-height: 28px;
  font-family: clarendon-urw, serif;
  font-style: normal;
  font-weight: 300;
}
main form section strong {
  font-family: clarendon-urw, serif;
  font-style: normal;
  font-weight: 700;
}
main form label {
  width: 250px;
  position: relative;
}
main form label.special:before {
  content: "";
  width: 240px;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #ededed;
}
main form input[type="text"],
main form input[type="password"] {
  box-sizing: border-box;
  width: 250px;
  height: 40px;
  line-height: 20px;
  margin: 0 auto;
  padding: 0 0 0 39px;
  border: none;
  outline: none;
  color: #cbcbcb;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}
main form input[type="text"]#loginField,
main form input[type="password"]#loginField {
  display: block;
  background: url('/img/pictoUser.png') 11px center no-repeat #ffffff;
  -moz-border-radius: 0.3125em 0.3125em 0 0;
  -webkit-border-radius: 0.3125em 0.3125em 0 0;
  border-radius: 0.3125em 0.3125em 0 0;
}
main form input[type="text"]#passwordField,
main form input[type="password"]#passwordField {
  display: block;
  background: url('/img/pictoPassword.png') 11px center no-repeat #ffffff;
  -moz-border-radius: 0 0 0.3125em 0.3125em;
  -webkit-border-radius: 0 0 0.3125em 0.3125em;
  border-radius: 0 0 0.3125em 0.3125em;
}
main form input[type="submit"] {
  width: 250px;
  height: 42px;
  line-height: 42px;
  margin: 10px auto 20px auto;
  color: #34573b;
  background-color: rgba(238, 233, 221, 0.6);
  -moz-border-radius: 0.3125em;
  -webkit-border-radius: 0.3125em;
  border-radius: 0.3125em;
  font-family: "proxima-nova-extra-condensed", "Open Sans Condensed", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  -o-transition-property: all;
  -o-transition: 0.5s ease-in-out;
  -moz-transition-property: all;
  -moz-transition: 0.5s ease-in-out;
  -webkit-transition-property: all;
  -webkit-transition: 0.5s ease-in-out;
  transition-property: all;
  transition: 0.5s ease-in-out;
}
main form input[type="submit"]:hover {
  background-color: #eee9dd;
}
