@charset "UTF-8";



* {
  box-sizing: inherit;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  background-color: #fff;
  color: #000;
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s, box-shadow 5000s ease-in-out 0s !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: white !important;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  font-style: italic;
  color: white !important;
  opacity: 1 !important;
}

input::placeholder {
  color: white;
}

.nowrap {
  white-space: nowrap;
}

/* Popup modale de récupération d'identifiants */
#modalRecupId {
  display: none;
  width: 600px;
}

#modalRecupId .modal-content {
  padding: 0;
}

#modalRecupId iframe {
  border: none;
  width: 100%;
  height: 280px;
}

html {
  font-size: 11px;
}

#page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  background: #000 no-repeat center center;
  background-size: cover;
  overflow-x: hidden;
}

.small-only {
  display: block;
}

.contenu {
  width: 100%;
  background-color: transparent;
  flex: 1 1 100%;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}


.bg {
  order: 1;
  width: 100%;
  display: none;
}

header, footer, main {
  width: 90%;
  margin: 0 auto;
  padding: 0;
  max-width: 39.87rem;
}

.separateur {
  width: 50%;
  height: 1px;
  display: flex;
  border: 0;
  background-color: rgb(26, 26, 26);
  margin: 1rem 0;
}

#logo {
  width: 100%;
  max-width: 100%;
  min-width: 100px;
  margin-bottom: 5rem;
  margin-top: 3rem;
  text-align: center;
}

#logo img {
  max-width: 100%;
  height: auto;
  border: 0;
  position: relative;
  z-index: 2;
}

h2 {
  font-family: 'Caslon', "Arial", sans-serif;
  margin: 0;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 200;
  line-height: 1.1;
  position: relative;
  text-transform: uppercase;
}

h2 span {
  color: rgb(236, 179, 69);
}

h3 {
  font-family: 'Goudy Old Style', "Arial", sans-serif;
  margin: 0;
  color: #fff;
  font-size: 4rem;
  font-weight: 200;
  line-height: 1.1;
}

.instructions {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 300;
  word-spacing: 0;
  font-family: 'Caslon', "Arial", sans-serif;
  letter-spacing: 0;
  margin: 2.25rem 0;
}

/* .instructions span {
  font-weight: bold;
} */

.display {
  display: none;
}

#fields {
  box-sizing: border-box;
}

#fields .field {
  position: relative;
  background-color: transparent;
  margin: 0;
  height: 3.6rem;
  color: #fff;
  border-bottom: 1px solid rgb(84, 84, 85);
}

#fields .field:not(:last-child) {
  margin-bottom: 1rem;
}

#fields label {
  position: absolute;
  top: 0;
  width: 2.5rem;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
}

#fields label img {
  height: 2rem;
  width: auto;
}

#fields #password_label img {
  height: 25px;
}

#fields label:after {
  content: '';
  width: 1px;
  height: 21px;
  background: rgb(84, 84, 85);
  position: absolute;
  right: -5px;
  bottom: 0.8rem;
}

#fields input[type=email],
#fields input[type=text],
#fields input[type=password] {
  font-size: 1.462rem !important;
  font-weight: normal;
  font-family: 'Caslon', "Arial", sans-serif !important;
  color: white !important;
  position: absolute;
  z-index: 1;
  bottom: 0px;
  left: 4rem;
  width: calc(100% - 4rem);
  box-sizing: border-box;
  margin-bottom: 0;
  height: 100% !important;
  border-bottom: none;
  padding: 1rem 2rem 0 1rem;
}

input:not([type]), input[type=text]:not(.browser-default), input[type=password]:not(.browser-default), input[type=email]:not(.browser-default), input[type=url]:not(.browser-default), input[type=time]:not(.browser-default), input[type=date]:not(.browser-default), input[type=datetime]:not(.browser-default), input[type=datetime-local]:not(.browser-default), input[type=tel]:not(.browser-default), input[type=number]:not(.browser-default), input[type=search]:not(.browser-default), textarea.materialize-textarea {
  background: none !important;
}

#fields input[type=email]:focus, #fields input[type=email].valid, #fields input[type=email].invalid,
#fields input[type=text]:focus,
#fields input[type=text].valid,
#fields input[type=text].invalid,
#fields input[type=password]:focus,
#fields input[type=password].valid,
#fields input[type=password].invalid {
  color: #000000;
  box-shadow: none;
  outline: 0;
}

#fields input[type=email]+span.label,
#fields input[type=text]+span.label,
#fields input[type=password]+span.label {
  color: #191818 !important;
  font-size: 1.2rem !important;
  font-weight: normal;
  font-family: 'Pooppins', "Arial", sans-serif !important;
  position: absolute;
  text-align: center;
  left: 4.8rem;
  top: 50%;
  margin-left: 3px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  z-index: 0;
  padding: 0 1rem;
}

#fields input[type=email]+span.label.active,
#fields input[type=text]+span.label.active,
#fields input[type=password]+span.label.active {
  -webkit-transform: translateY(calc(-50% - 13px)) scale(0.7);
  transform: translateY(calc(-50% - 13px)) scale(0.7);
}

#fields input[type=email]:focus:not([readonly]),
#fields input[type=text]:focus:not([readonly]),
#fields input[type=password]:focus:not([readonly]) {
  box-shadow: none;

}

.button_form {
  height: 4.2rem;
  width: 17rem;
  font-family: 'Caslon', "Arial", sans-serif;
  font-weight: bold;
  font-size: 1.4rem;
  color: black;
  background: rgb(236, 179, 69);
  max-width: 28.87rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem 0 0 0;
  text-align: center;
  transition: all 0.2s ease-in-out;
  position: relative;
  border-radius: 0;
  letter-spacing: 0.25rem;
  padding-top: 0.5rem;
  text-transform: uppercase;
}

.button_form:hover {
  background: white;
}

.button_form .arrow {
  margin-left: 17px;
}

#oubli_form {
  text-align: right;
  font-size: 1.25rem;
  position: relative;
  width: 100%;
  margin-top: 0.8rem;
}

#oubli_form a {
  font-family: 'Caslon', "Arial", sans-serif;
  font-weight: normal;
  color: rgb(236, 179, 69);
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: all 0.2s ease-in-out;
  font-style: italic;
}

#oubli_form a:hover {
  color: white;
}


.dbl_btn {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
}


@media screen and (min-width: 600px) {
  #page {
    padding: 2rem 0;
    background: url(../images/bg.jpg) no-repeat center center;
    background-size: cover;
  }

  .small-only {
    display: none;
  }

  div.hr {
    margin: 30px 0;
  }

  .display {
    display: none;
  }

  .contenu {
    justify-content: center;
    height: 75%;
    flex: 0 0;
    margin: auto;
    width: 55%;
    min-width: 47rem;
    background: #000 no-repeat center center;
    -webkit-box-shadow: 2px 23px 51px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 2px 23px 51px 0px rgba(1, 1, 1, 0.1);
  }

  .bg {
    display: none;
  }

  .contenu-bg {
    position: relative;
    background-color: #000;
  }

  header, main, footer {
    max-width: 34.231rem;
  }

}

@media screen and (max-width: 959px) and (max-height: 840px) {
  .bg {
    display: none;
  }

  .ligne_contour {
    display: none;
  }

}

@media screen and (min-width: 960px) {
  html {
    font-size: 11px;
  }

  #page {
    min-height: 100%;
    display: flex;
    flex-direction: row;
    background-position: center;
    padding: 0;
  }

  .display {
    display: block;
  }

  .contenu {
    width: 50%;
    flex: 1 1 50%;
    height: initial;
    margin: initial;
    box-shadow: none;
    min-width: 48rem;
    border-radius: unset;
    background-color: #000;
  }

  .contenu-bg {
    background: #000;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 1rem;
  }

  .bg {
    background: transparent;
    order: 1;
    padding-top: 37%;
    display: block;
    width: 50%;
    flex: 1 1 50%;
    height: initial;
    position: relative;
    overflow: hidden;
  }

}

@media screen and (min-width: 1200px) {
  html {
    font-size: 11px;
  }
  #page {
    padding: 0;
    background: url(../images/bg.jpg) no-repeat center center;
    background-size: cover;
  }

  .contenu {
    justify-content: unset;
    height: unset;
    flex: unset;
    margin: unset;
    width: unset;
    min-width: unset;
    background: #000 no-repeat center center;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    min-width: unset;
    background-color: unset;
  }

  .bg {
    display: none;
  }
  
  .contenu-bg {
    padding: unset;
  }

  .contenu-bg {
    position: absolute;
    display: grid;
    grid-template-columns: 59% auto;
    width: 85.45rem;
    top: 50%;
    left: 0;
    transform: translateY(-40%);
    height: fit-content;
    padding-top: 1rem;
  }

  #logo {
    text-align: right;
  }

  header {
    width: 100%;
    max-width: 100%;
    padding: 0 7rem;
  }

  header, main {
    width: 100%;
    max-width: 100%;
    padding: 0 9rem 0 5.25rem;
  }

  .separateur {
    position: absolute;
    right: 37rem;
    height: 16rem;
    width: 1px;
    transform: translateY(-150%);
  }

  h2 {
    text-align: right;
  }

  .instructions {
    margin: 6.75rem 0 4rem;
  }
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 13px;
  }

}

@media screen and (min-width: 1600px) and (max-height: 835px) {
  html {
    font-size: 11px;
  }
}