@charset "UTF-8";
* {
  box-sizing: inherit;
}

html {
  height: 100%;
  font-size: 11px;
}

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

a {
  text-decoration: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 10000s ease-in-out 0s, box-shadow 10000s ease-in-out 0s !important;
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0) inset !important;
  -webkit-text-fill-color: rgb(65, 69, 134)  !important;
}

::-webkit-input-placeholder, :-moz-placeholder, ::-moz-placeholder, :-ms-input-placeholder {
  color: rgb(65, 69, 134)  !important;
  opacity: 1 !important;
}

.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;
}

#page {
  min-height: 100%;
  display: flex;
  flex-direction: column-reverse;
  font-size: 1.2rem;

}


#particles {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#particles-js {
  -webkit-transform: rotate(19deg) translate(-29%, -50%);
  transform: rotate(19deg) translate(-29%, -50%);
  mix-blend-mode: overlay;
}

.small-only {
  display: block;
}

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

header,main{
  max-width: 34rem;
  margin: auto;
}

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

.bloc_bg {
  width: 90%;
  margin: 0 auto;
}


div.hr {
  margin: 1.33rem 0;
}

#logo {
  /* position: absolute; */
  width: 100%;
  min-width: 100px;
  margin: 0 auto 3rem;
  text-align: center;
}

#logo img {
  max-width: 100%;
  height: auto;
  border: 0;
}

h2 {
  font-family: 'Poppins', "Arial", sans-serif;
  margin: 0;
  color: rgb(75, 78, 136);
  font-size: 2.816rem;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
}

h2 span {
  font-size: 2.937rem;
  color: rgb(235, 159, 54);
}

h3 {
  font-family: 'Futura Std', "Arial", sans-serif;
  margin: 0;
  margin-bottom: 2.3rem;
  color: #353535;
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .1rem;
}
h3 span{
  color: #4b83fc;
}

.instructions {
  font-family: 'Poppins', "Arial", sans-serif;
  color: rgb(65, 69, 134);
  font-size: 1.431rem;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 2.5rem;
  width: 100%;
  text-align: left;
}
/* .instructions span {
font-weight: bold;
} */

br.display{
  display: none;
}

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

#fields .field {
  position: relative;
  border: 2px solid rgb(65, 69, 134);
  background-color: white;
  height: 4.8rem;
  border-radius: 50px;
  /* -webkit-box-shadow: -1px 3px 38px 0px rgba(0, 0, 0, 0.14);
  box-shadow: -1px 3px 38px 0px rgba(0, 0, 0, 0.14); */
}

#fields .field:first-child {
  margin-bottom: 1.5rem;
}

#fields .field:last-child {
  margin-bottom: 1.25rem;
}

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

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

#fields label:after {
  content: '';
  border-right: 1px solid rgb(221, 221, 221);
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  right: 3rem;
  width: 90%;
}

#fields input[type=email],
#fields input[type=text],
#fields input[type=password] {
  font-size: 1.3rem !important;
  font-family: 'Poppins', "Arial", sans-serif !important;
  font-weight: 500;
  color: rgb(65, 69, 134) !important;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 11rem;
  width: calc(100% - 11rem);
  border: 0;
  background: transparent;
  height: 100% !important;
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 0.25rem 2rem 0 0;
}

#fields input[type=email]#password,
#fields input[type=text]#password,
#fields input[type=password]#password {
  caret-color: #0face5;
}

#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: rgb(65, 69, 134);
  box-shadow: none;
  outline: 0;
}

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

#fields input::placeholder{
  color: rgb(65, 69, 134);
}

#oubli_form {
  text-align: right;
  font-family: 'Poppins', "Arial", sans-serif;
  font-weight: 300;
  font-size: 1.15rem;
  position: relative;
  max-width: 100%;
  font-style: italic;
  margin-bottom: 2.75rem;
}

#oubli_form a {
  color: rgb(47, 148, 178);
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  text-decoration: none;
  border-bottom: 1px solid;
}

#oubli_form a:hover {
  color: rgb(235, 159, 54);
}

.button_form {
  height: 4.6rem;
  width: 15.75rem;
  font-family: 'Poppins',"Arial", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: white;
  background-color: rgb(65, 69, 134);
  max-width: 36.33rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.15rem;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-transform: uppercase;
  border-radius: 5px;
}

.button_form:hover {
  background-color: rgb(235, 159, 54);
}

.button_form img {
  position: absolute;
  left: 0;
  bottom: 5px;
}
.button_form .arrow img{
  width: 80%;
  height: auto;

}
.button_form .arrow svg {
  fill: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.separateur{
  height: 10px;
  width: 90%;
  background-image: url(../images/separateur-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  border: 0;
  margin: 1.5rem auto 0.5rem;
}

header{
  position: relative;
}
main{
  position: relative;
}

@media screen and (max-width: 599px) {
  .displ {
    display: none;
  }

  h2 {
    font-size: 2.3rem;
  }
  h2 span {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 359px) {
  h2 br {
    display: none;
  }
}

@media screen and (min-width: 600px) {


  #page{
    background-size: cover;
    background-position: 50% 50%;
  }

  .theme_1 {
    background: url(../images/bg.jpg) no-repeat ;
  }
  br.display{
    display: block;
  }
  #page {
    padding: 2rem 0;
  }

  .small-only {
    display: none;
  }
  div.hr {
    margin: 30px 0;
  }
  .contenu {
    background: transparent;
    justify-content: center;
    height: 75%;
    flex: 0 0;
    margin: auto;
    width: 85%;
    z-index: 2;
  }
  .bg {
    display: none;
  }
  .bloc_bg {
    width: 100%;
    max-width: 41.985rem;
    background-color: #ffffff00;
    padding: 35px 35px 0;
  }
  .bloc_bg:last-of-type{
    padding: 0 35px 35px;
  }
}


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

@media screen and (min-width: 960px) {
  html {
    font-size: 11.5px;
  }
  #page {
    min-height: 100%;
    display: flex;
    flex-direction: row-reverse;
    padding: 0;
  }

  .contenu {
    width: 100%;
    flex: 1 1 100%;
    height: initial;
    margin: initial;
    background: none;
    background-color: transparent;
    box-shadow: none;
  }
  .bg {
    display: block;
    width: 0%;
    flex: 1 1 0%;
    order: 1;
    background: transparent;
    height: initial;
    position: relative;
    overflow: hidden;
  }

}

@media screen and (min-width: 1200px) {
  html {
    font-size: 12px;
  }
  .contenu {
    width: 63%;
    flex: 1 1 63%;
  }
  .bg {
    width: 37%;
    flex: 1 1 37%;
  }
  .bloc_bg{
    background: none;
    position: relative;
  }
  header .hr {
    margin: 2rem 0 2.87rem;
  }
  footer {
    margin-top: 6.6rem;
  }
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 12.5px;
  }
}
@media screen and (min-width: 960px) and (max-height:940px) {
  main::after{
    content: none;
    display: none;
  }
}
@media all and (-ms-high-contrast: none) and (max-width: 961px), (-ms-high-contrast: active) and (max-width: 961px) {
  #page {
    display: block;
  }
  .contenu {
    box-shadow: none;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 960px), (-ms-high-contrast: active) and (min-width: 960px) {
  #page, .contenu {
    min-height: 100vh;
  }
  .bg {
    min-height: 100vh;
  }
}

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

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