@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: "Montserrat", "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: #364c63 !important;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  font-style: italic;
  color: rgb(4, 48, 87) !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;
}

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

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

.small-only {
  display: block;
}

.contenu {
  width: 100%;
   background-color: #081e3300;
  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%;
  margin: 0 auto;
  padding: 0;
  max-width: 39.87rem;
  text-align: left;
}

div.hr {
  margin: 1.33rem 0;
}

hr{
  width: 62%;
  margin: auto;
  background: #e2e5ea;
  height: 3px;
  border: none;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
#logo {
  width: 100%;
  max-width: 26.91rem;
  min-width: 100px;
  text-align: center;
}

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

h2 {
  font-family: 'Poppins', "Arial", sans-serif !important;
  margin: 0;
  color: rgb(4, 48, 87);
  font-size: 3.7rem;
  font-weight: 600;
  text-transform: none;
  margin-top: 3rem;
}

h3 {
  font-family: 'Poppins', "Arial", sans-serif !important;
  margin: 0;
  color: rgb(4, 48, 87);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1rem;
}

.instructions {
  color: rgb(4, 48, 87);
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 2.5rem;
  word-spacing: 1px;
  font-family: 'Poppins', "Arial", sans-serif;
  letter-spacing: -0.5px;
}
/* .color{
  font-weight: 500;
} */

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

#fields .field {
  position: relative;
    background-color: white;
    margin: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 6.3rem;
    color: rgb(15, 15, 15);
    /* border-bottom: 1px solid #5d5d5c; */
}

#fields .field:not(:last-child) {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 1px rgb(228, 228, 228) solid;
}

#fields label {
    position: absolute;
    top: 0;
    /* left: -50px; */
    width: 4.2rem;
    height: 100%;
    text-align: center;
    margin-left: 2rem;
    display: flex;
    align-items: center;
}

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

#fields label:after {
  content: '';
  width: 1px;
  height: 1.5rem;
  background: rgb(4, 48, 87);
  position: absolute;
  right: 1rem;
}

#fields input[type=email],
#fields input[type=text],
#fields input[type=password] {
  font-size: 1.4rem !important;
  font-weight: normal;
  font-family: 'Poppins', "Arial", sans-serif !important;
  color: rgb(4, 48, 87) !important;
  position: absolute;
  z-index: 1;
  bottom: 0px;
  left: 5rem;
  width: calc(100% - 4.77rem);
  box-sizing: border-box;
  margin-bottom: 0;
  height: 100% !important;
  border-bottom: none;
  /* border-radius: 15px; */
  padding: 0 1rem;
}

#fields input[type=email]#password,
#fields input[type=text]#password,
#fields input[type=password]#password {
  caret-color: rgb(4, 48, 87);
}

#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(4, 48, 87);
  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: 16192a;
}
input::placeholder{
  color: rgb(4, 48, 87);
}
.button_form {
  height: 4rem;
  width: 70%;
  font-family: 'Poppins', "Arial", sans-serif;
  font-weight: bold;
  font-size: 1.33rem;
  color: #fff;
  background-color: rgb(4, 48, 87);
  max-width: 36.33rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.button_form:hover {
  background-color: rgb(15, 15, 15) ;
}

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

#oubli_form {
  width: 50%;
  text-align: right;
  font-size: 1.3rem;
  position: relative;
  width: 100%;
  margin-left: 2rem;
  height: 4rem;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: right;
}

#oubli_form a {
  margin: auto 0;
  font-family: 'Poppins', "Arial", sans-serif;
  font-weight: 400;
  color: rgb(4, 48, 87);
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}

#oubli_form a:hover {
  letter-spacing: -0.05rem;
}

.dbl_btn{
  display: flex;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

@media screen and (max-width:400px){
  h2{
    font-size: 3.7rem;
  }
  h3 .subtitle, h3 .subtitle2{
    font-size: 2.55rem;
  }
  .instructions{
    font-size: 1.45rem;
  }
}

@media screen and (max-width: 599px) {
  #page{
    padding: 4rem;
  }
  .contenu {
    text-align: center;
  }
  #fields {
    margin-left: auto;
    margin-right: auto;
  }

  html{
    font-size: 10px;
  }


}

@media screen and (min-width: 600px) {
  html{
    font-size: 12px;
  }
  #oubli_form {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.6);
  }
  #page {
    padding: 2rem 0;
    background: url(../images/bg.jpg) no-repeat right center;
    background-size: cover;
    overflow: hidden;
    position: relative;
  }
  .small-only {
    display: none;
  }
  div.hr {
    margin: 30px 0;
  }
  .contenu {
    justify-content: center;
    flex: 0 0;
    margin: auto;
    width: 80%;
    background-image: none;
    background-color: white;
    border-top-left-radius: 6rem;
    border-bottom-right-radius: 6rem;
    position: relative;
    z-index: 1;
    padding: 01rem;
    /* border-radius: 1.6rem; */
    box-shadow: 2px 23px 51px 0px rgba(1, 1, 1, 0.1);
    max-width: 45.8rem;
  }
  .contenu .forme {
    position: relative;
    z-index: 1;
  }
  .bg {
    display: none;
  }
  header, main, footer {
    max-width: 34.231rem;
  }
}

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

@media screen and (min-width: 960px) {
  #page {
    min-height: 100%;
    display: flex;
    flex-direction: row-reverse;
    background: url(../images/bg.jpg) no-repeat ;
    background-position: right;
    background-size: cover;
    padding: 0;
    overflow: hidden;
  }
  .contenu {
    width: 45%;
    flex: 1 1 100%;
    max-width: unset;
    margin: unset;
    background: transparent;
    box-shadow: none;
    align-content: center;
    align-items: center;
  }
  .bg {
    display: block;
    width: 50%;
    flex: 1 1 50%;
    height: initial;
  }
}

@-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: 960px) {
  #logo {
    margin-top: 0;
  } 
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 12px;
  }
  #logo{
    width: 120%;
    max-width: 32rem;
    text-align: left;
  }
  #page {
    background: url(../images/bg.jpg) no-repeat right center;
    background-size: cover;
  }
  .contenu {
    width: 70%;
    flex: 1 1 70%;
    position: relative;
    z-index: 1;
    height: 75%;
    background: rgba(255, 255, 255, 0);
    margin: auto;
  }
  .sous-div{
    margin-left: 2.5rem;
  } 
}

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

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

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


.photo-separation{
  width: 10rem;
  display: flex;
  height: 2px;
  background-color: rgb(156, 209, 240);
  margin: 0 auto;
}

input:focus::placeholder{
  opacity: 0;
}