@font-face {
  font-family: Klavika-bold;
  src: url(../font/klavika-bold.otf);
}

@font-face {
  font-family: Klavika-light;
  src: url(../font/klavika-light.otf);
}

body {
  font-family: Klavika-light;
  color: #3c3c3b;
}

/** NAV **/

.wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.toggleNav {
  display: none;
}

  .flex-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: flex;
  }

    .flex-nav li {
      -webkit-box-flex: 3;
      flex: 3;
      padding: 10px;
      text-align: center;
      cursor: pointer;

      -webkit-transition: background-color 0.3s ease-out;
      -moz-transition: background-color 0.3s ease-out;
      -o-transition: background-color 0.3s ease-out;
      transition: background-color 0.3s ease-out;
    }

      .flex-nav li a {
        text-decoration: none;
        color: #fff;
      }

        .flex-nav li a::before {
          content:"";
          background: url(../img/Five-Logo.png) no-repeat;
          background-size: 100%;
          padding-bottom: 10px;
          display: block;
          margin: 0 auto;
          width: 40px; height: 42px;
        }

      .flex-nav li:first-child {
        background-color: #bccf00;
      }

        .flex-nav li:first-child:hover {
          background-color: #b3bc00;
        }

      .flex-nav li:nth-child(2) {
        background-color: #964c98;
      }

        .flex-nav li:nth-child(2):hover {
          background-color: #6f3b72;
        }

      .flex-nav li:nth-child(3) {
        background-color: #cc1417;
      }

        .flex-nav li:nth-child(3):hover {
          background-color: #a81119;
        }

      .flex-nav li:nth-child(4) {
        background-color: #eb804b;
      }

        .flex-nav li:nth-child(4):hover {
          background-color: #c46c45;
        }

      .flex-nav li:nth-child(5) {
        background-color: #f1c40f;
      }

        .flex-nav li:nth-child(5):hover {
          background-color: #e0b810;
        }

      .flex-nav li:last-child {
        background-color: #bf9568;
      }

        .flex-nav li:last-child:hover {
          background-color: #aa815c;
        }

/*header ul {
  width: 100%;
  display: flex;
  margin: 0; padding: 0;
}

  header ul li {
    list-style: none;
    padding: 10px;
    width: 20%;
    text-align: center;
  }

  header ul li a {
    color: #fff;
    display: block;
    text-decoration: none;
  }

    header ul li a::before {
      content:"";
      background: url(../img/Five-Logo.png) no-repeat;
      background-size: 100%;
      padding-bottom: 10px;
      display: block;
      margin: 0 auto;
      width: 40px; height: 42px;
    }

  header ul li {
    -webkit-transition: background-color 0.3s ease-out;
    -moz-transition: background-color 0.3s ease-out;
    -o-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out;
  }

  header ul li:first-child {
    background-color: #bccf00;
  }

    header ul li:first-child:hover {
      background-color: #b3bc00;
    }

  header ul li:nth-child(2) {
    background-color: #964c98;
  }

    header ul li:nth-child(2):hover {
      background-color: #6f3b72;
    }

  header ul li:nth-child(3) {
    background-color: #cc1417;
  }

    header ul li:nth-child(3):hover {
      background-color: #a81119;
    }

  header ul li:nth-child(4) {
    background-color: #eb804b;
  }

    header ul li:nth-child(4):hover {
      background-color: #c46c45;
    }

  header ul li:nth-child(5) {
    background-color: #f1c40f;
  }

    header ul li:nth-child(5):hover {
      background-color: #e0b810;
    }

  header ul li:nth-child(6) {
    background-color: #bf9568;
  }

    header ul li:nth-child(6):hover {
      background-color: #aa815c;
    }
**/
/** MAIN **/

main {
  width: 100%;
  margin: 0 auto;
  padding: 70px 0 40px 0;
}

h1 {
  text-align: center;
}

h2 {
  font-size: 30px;
  text-align: center;
}

p {
  text-align: center;
}

main ul {
  display: flex;
  justify-content: center;
  margin-top: 70px;
  padding: 0;
}

  main ul li {
    font-size: 24px;
    margin-right: 76px;
    list-style: none;
    text-transform: uppercase;

    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
  }

    main ul li:last-child {
      margin-right: 0;
    }

      main ul li a {
        color: #3c3c3b;
        text-decoration: none;
      }

      main ul li a:active main ul li a:focus {
        font-family: Klavika-bold;
        color: #bccf00;
      }

      main ul li a:hover {
        color: #bccf00;
      }

/** MAIN SECTION **/

section#connexion-client {
  display: flex;
  margin-top: 35px;
  text-align: center;
}

  section#connexion-client::before {
    content:url(../img/White-arrow.png);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -5px);
    width: 134px;
    height: 52.391px;
  }

.img-client {
  width: 50%;
  background-image: url(../img/natalya-zaritskaya-SIOdjcYotms-unsplash.jpg);
  background-size: cover;
}

/** FORMULAIRE **/
.formulaire {
  width: 50%;
  margin: 0 auto;
  padding: 120px 0 120px 0;
  box-shadow: -1px 2px 10px 3px rgba(0, 0, 0, 0.09) inset;
}

.formulaire h3 {
  font-size: 21px;
  font-family: Klavika-bold;
  text-align: center;
}

  .formulaire h3 .five-color {
    color: #bccf00;
  }

form {
  width: 35%;
  margin: 0 auto;
  flex-direction: column;
}

input[type=email], input[type=password] ,input[type=text]{
  width: 100%;
  color: #3c3c3b;
  border-radius:4px;
  margin:8px 0;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  border: none;
  box-shadow: -1px 2px 10px 3px rgba(0, 0, 0, 0.09) inset;
}

input[type=email], input[type=password],input[type=text]{
  height: 35px;
}

.input-icone input[type=email], input[type=password],input[type=text] {
  padding-left: 40px;
}

.input-icone {
  position:relative;
}

.input-icone i{
  position: absolute;
  left: 0;
  top: 8px;
  padding: 9px 15px;
  color: #bccf00;
}

input[type=text]:hover {
  background: #f2f2f2;
}

button[type=submit] {
  width: 100%;
  border-radius: 4px;
  margin: 8px 0;
  outline:none;
  padding: 8px;
  box-sizing:border-box;
  border: none;
  background-color: #bccf00;
  cursor: pointer;
  color: #fff;
  font-family: Klavika-bold;
  margin-bottom: 30px;

  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}

button[type=submit]:hover {
  background-color: #9ba300;
}

section#connexion-client a {
  text-decoration: none;
  color: #3c3c3b;

  -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

section#connexion-client a:hover {
  color: #bccf00;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.alert.alert-success {    border-left: 3px solid green;    COLOR: green;    background: #f1f1f1;    font-size: 14px;    padding: 10px 15px;    margin-bottom: 18px;    clear: both;    overflow: hidden;}
.alert.alert-error {    border-left: 3px solid red;    COLOR: red;    background: #f1f1f1;    font-size: 14px;    padding: 10px 15px;    margin-bottom: 18px;    clear: both;    overflow: hidden;}
.isError,.isSuccess {    color: red;    font-style: italic;    margin-top: 5px; }
span.btnShowPassword {    position: absolute;    right: 10px;    top: 7px;    z-index: 1; cursor: pointer; }
.password_section input{height: 35px; margin-top: 5px; border: 1px solid #989898;  padding-left: 8px;  border-radius: 3px;}
.password_section p{    font-size: 13px;   font-weight: bold;}
.password_section button {width: calc(100% - 190px);  font-size: 14px !important;}

@media only screen and (max-width: 680px) {
  form {
    width: 80%;
    display: flex;
  }
}

@media only screen and (max-width: 1100px) {
  form {
    width: 80%;
    display: flex;
  }
}
