@import url("https://fonts.googleapis.com/css2?family=Aboreto&display=swap");
@import url('https://fonts.googleapis.com/css?family=Comfortaa&display=swap');

.background_image {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.background_image img {
  max-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  opacity: 60%;
  z-index: 1;
}

.page {
  display: flex;
  margin: auto;
 
  align-items: center;
  width: 100%;
  z-index: 2;
  background-color: white;
  color: var(--alternate-color);
  height: 100vh;
  position: relative;
}


.droite {
  width: 60%;
  height: 100%;
  position: relative;
}

.gauche {
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.contents {
  z-index: 2;
  width: 100%;
  padding: 10px;
  height: max-content;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
}
.champ {
  position: relative;
  height: 30px;
  background-color: transparent;
  width: 100%;
  border-radius: 10px;
  border: grey solid;
  outline: none;
  color: var(--alternate-color);
}

label {
  font-size: 0.8rem;
  padding: 10px 0;
  color: var(--alternate-color);
}
.bouton {
  margin: none;
  align-self: start !important;
}
input.boutonclick {
  border: 2px solid var(--alternate-color) !important;
}

.boutonclick:hover:not(.disabled, :disabled) {
  color: var(--alternate-color);
  position: relative;
  transition: all 0.3s ease-out;
  border: 2px solid var(--alternate-color);
  background-color: white;
}

.bouton span {
  width: max-content;
}

.bouton span a,
label a {
  text-decoration: none;
  color: var(--alternate-color);
  font-size: 0.8rem;
  font-style: italic;
}

.bouton span a:hover,
label a:hover {
  text-decoration: underline;
}

form {
  display: contents;
}

.password-toggle i {
  color: #999;
}

.password-toggle.active i {
  color: #000;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

input[type="password"]::-webkit-password-eye-button {
  display: none !important;
}

.logo.popup {
  height: 50px;
  position: relative;
}

.headline.popup {
  margin: unset;
  height: unset;
  position: relative;
  display: flex;
  flex-direction: column;
}

.headline.popup h1 {
  font-style: normal;
  font-size: 1.3rem;
  margin: unset;
}

.popup .boutonclick {
  border: red solid;
}

.popup .boutonclick:hover {
  background-color: white;
  border-radius: 10px;
}

.popup a {
  color: unset;
}

.popup .boutonclick a {
  text-decoration: none;
}
.text_under_button {
  margin-top: 10px;
}
.text_under_button a {
  display: block;
  font-size: 1rem;
  text-decoration: none;
  color: var(--alternate-color);
  font-size: 0.8rem;
  margin-top: 5px;
  font-style: italic;
}
.text_under_button a:hover {
  text-decoration: underline;
}

.logo-form {
  max-width: 250px;
  margin-bottom: 10px;
}
.imgLogoHeader {
  display: flex;
}

.headline {
  font-weight: 500;
  color: #e82a00;
  font-style: italic;
  letter-spacing: 0.2px;
  margin-top: 0px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .logo-form {
    display: none;
  }
  .imgLogoHeader {
    display: flex;
  }
  .gauche {
    width: 100%;
    padding: 20px;
    height: max-content;
  }

  .droite {
    width: 100%;
    position: absolute;
  }

  .background_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .contents {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 10px;
    color: var(--alternate-color);
    border-radius: 10px;
    
  
  }

  .bouton {
    align-self: center;
    align-items: center;
  }
}
