@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", "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 5000s ease-in-out 0s, box-shadow 5000s ease-in-out 0s !important;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
  -webkit-text-fill-color: rgb(29, 48, 109) !important;
}

::-webkit-input-placeholder, :-moz-placeholder, ::-moz-placeholder, :-ms-input-placeholder {
  font-style: italic;
  color: rgb(29, 48, 109) !important;
  opacity: 1 !important;
}

/*
::placeholder { !* Chrome, Firefox, Opera, Safari 10.1+ *!
	color: red;
	opacity: 1; !* Firefox *!
}

:-ms-input-placeholder { !* Internet Explorer 10-11 *!
	color: red;
}

::-ms-input-placeholder { !* Microsoft Edge *!
	color: red;
}*/

.nowrap {
  white-space: nowrap;
}

.d-none {
  display: none;
}

/* 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: 12px;
}

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

.small-only {
  display: block;
}

.contenu {
  width: 100%;
  background: #ffffff;
  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: 100%;
  max-width: 36rem;
  margin: 0 auto;
}

.separateur {
  background: rgb(182, 182, 182);
  border: none;
  width: 6rem;
  height: 3px;
  margin-top: 1.25rem;
  margin-left: 0;
}

#logo {
  width: 100%;
  max-width: 100%;
  min-width: 100px;
  margin: 0;
  align-items: left;
  margin-bottom: 1rem;
}

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

h2 {
  margin: 0;
  font-size: 3.2rem;
  letter-spacing: 2px;
  font-weight: bold;
  box-sizing: border-box;
  font-family: "Poppins", "Arial", sans-serif;
  line-height: 1;
  color: #0f383c;
  text-align: left;
  text-transform: uppercase;
}

h3 {
  margin: 0.5rem 0 3rem 0;
  /* margin-bottom: 3rem; */
  color: #0f383c;
  font-size: 2.15rem;
  font-weight: normal;
  line-height: 1;
  font-family: "Poppins", "Arial", sans-serif;
  text-align: left;
}

.instructions {
  font-family: "Poppins", "Arial", sans-serif;
  text-align: left;
  color: #0f383c;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: normal;
  margin: 0 0 3rem;
}

.instructions span {
  font-weight: bold;
}

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

#fields .field {
  position: relative;
  height: 5rem;
  background-color: #edf6fc;
  /* border-radius: 50px; */
}

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

#fields .field:last-child {}

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

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

#fields label:after {
  content: '';
  border-right: 1px solid rgb(121, 122, 122);
  opacity: 1;
  position: absolute;
  top: 0.7rem;
  bottom: 0.7rem;
  right: 0;
  width: 100%;
}

#fields input[type=email], #fields input[type=text], #fields input[type=password] {
  font-size: 1.2rem !important;
  font-weight: normal;
  font-family: "Poppins", "Arial", sans-serif !important;
  color: rgb(29, 48, 109) !important;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 6rem;
  width: calc(100% - 6rem);
  border-bottom: 0;
  height: 100% !important;
  box-sizing: border-box;
  margin-bottom: 0;
  caret-color: rgb(29, 48, 109);
  padding: 0 2rem;
}

#fields input[type=email]#password, #fields input[type=text]#password, #fields input[type=password]#password {}

#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(0, 0, 0);
  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: rgb(126, 129, 132);
}

#fields input[type=email]+span.label, #fields input[type=text]+span.label, #fields input[type=password]+span.label {
  color: rgb(0, 0, 0) !important;
  font-size: 1.2rem !important;
  font-weight: normal;
  font-family: "Poppins", "Arial", sans-serif !important;
  position: absolute;
  text-align: center;
  left: 5.73rem;
  top: 50%;
  -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;
}

#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% - 24px)) scale(0.7);
  transform: translateY(calc(-50% - 24px)) scale(0.7);
  /* padding-left: 6px; */
}

#fields input::placeholder {
  color: rgb(29, 48, 109);
}

.button_form {
  height: 4.3rem;
  width: calc(50% - 4rem);
  font-family: "Poppins", "Arial", sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  color: white;
  background: #fba618;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: right;
  transition: all 0.3s ease-in-out;
  position: relative;
  letter-spacing: 0.1rem;
  z-index: 2;
  position: relative;
  margin: 0 0 0 2rem;
  text-transform: uppercase;
}

/* .button_form span{
  transform: skew(20deg);
} */
/* .arrow{
  margin-top: 0.3rem;
  margin-left: 15px;
}
.button_form:hover .arrow {
  transition: all 0.3s ease-in-out;
  margin-right: -20px;
} */

.button_form:hover, .button_form:focus {
  background-color: #ffb639;
}

.oubli_form {
  height: 4.3rem;
  width: calc(50% - 0.5rem);
  font-family: "Poppins", "Arial", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  color: rgb(255, 255, 255);
  background: #bababa;
  border: 2px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
  position: relative;
  margin: 0 2rem 0 0;
  padding-top: 0.2rem;
  /* border-radius: 7px; */
  background: #9b9b9b;

}

.oubli_form:hover {
  color: white;
}

.oubli_connexion {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}

.dbl_btn {
  display: flex;
  place-content: center;
  width: 100%;
  margin-top: 3.5rem;
}

/*@media screen and (min-width: 600px) {
  #page {
    padding: 2rem 0;
    background: url(../images/bg-2.jpg) no-repeat left;
    background-size: cover;
    background-position-x: 20%;
    overflow: hidden;
    position: relative;
  }
  h2 {
    font-size: 3.6rem;
  }
  h3 {
    font-size: 2.0953rem;
  }
  .small-only {
    display: none;
  }
  div.hr {
    margin: 30px 0;
  }
  .contenu {
    text-align: center;
    justify-content: center;
    min-height: 100%;
    flex: 0 0;
    margin: auto;
    width: 100%;
    background-image: none;
    background-color: rgba(255, 255, 255, 0);
    position: relative;
    z-index: 1;
    padding: 2.6rem;
    border-radius: 0;
    box-shadow: 2px 23px 51px 0px rgba(1, 1, 1, 0.1);
    max-width: 41.534rem;
  }
  .contenu .forme {
    position: relative;
    z-index: 1;
  }
  .bg {
    display: none;
  }
  .d-none {
    display: block;
  }
  .separateur {
    margin-left: 0;
  }
   header, footer {
    width: 100%;
  } 
  .contenu header, .contenu main {
    max-width: 34.4rem;
  }
  
}*/

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

@media screen and (min-width: 100px) {
  #page {
    background: url(../images/bg.jpg) no-repeat center;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    background-size: cover;
    padding: 0;
    overflow-x: hidden;
  }

  .contenu {
    width: 100%;
    flex: 1 1 100%;
    max-width: unset;
    margin: 0;
    background: #0e335900;
    box-shadow: none;
    border-radius: 0;
  }

  .bg {
    display: block;
    width: 0%;
    flex: 1 1 0%;
    height: initial;
  }
}

@media screen and (max-width: 599px) {
  header, footer, main {
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
  }

  .disp {
    display: none;
  }

  h2 {
    font-size: 3.4rem;
  }

  .contenu {
    padding: 0 3rem;
    background-color: white;
    background: white;
  }

  .button_form {
    height: 3.8rem;
    width: calc(40% - 1rem);
    margin: 0 0 0 1rem;
    font-size: 1.2rem;
  }

  .oubli_form {
    width: calc(60% - 1rem);
    margin: 0 1rem 0 0;
    font-size: 1.1rem;
    height: 3.8rem;
  }
}

@media screen and (max-width: 499px) {
  .contenu {
    padding: 0 2rem;
  }

  h2 {
    margin-bottom: 3rem;
  }

  .instructions {
    margin-bottom: 2.5rem;
  }

  .dbl_btn {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 411px) {}

/* @-webkit-keyframes jelly {
  25% {
    -webkit-transform: scale(0.9, 1.1);
    transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
    transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}

@keyframes jelly {
  25% {
    -webkit-transform: scale(0.9, 1.1);
    transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
    transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
} */

@media screen and (max-height: 767px) and (min-width: 1200px) {
  #page {
    padding: 2rem;
  }
}

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

  #page {
    background: url(../images/bg.jpg) no-repeat center;
    background-size: cover;
  }

  .bg {
    width: 0%;
    flex: 1 1 0%;
  }

  .contenu {
    width: 100%;
    flex: 1 1 100%;
    position: relative;
    z-index: 1;
    background: none;
    min-width: 41.534rem;
    margin: auto;
  }

  .sous-div {
    margin-left: 2.5rem;
  }

  header, main {
    max-width: 36rem;
    width: 100%;
  }
}

@media screen and (min-width: 1200px) and (max-height: 820px) {
  html {
    font-size: 11.5px;
  }
}

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

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

@media all and (-ms-high-contrast: none) and (max-width: 961px), (-ms-high-contrast: active) and (max-width: 961px) {
  #page {
    background: #fff;
    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 {
    min-height: 100vh;
  }
}

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

  #page {
    background: url(../images/bg.jpg) no-repeat center top;
    background-size: cover;
  }
}