.createAccount-popup-container {
  display: none;
  z-index: 102;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background-color: var(--FormCouleurFond);
  overflow-y: auto;

  background-size: cover;
}

#CreateAccount {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#CreateAccount h1 {
  /* color: var(--FormCouleurCarac); */
  color: darkblue;
  font-size: var(--FormTitreText);
  padding: 10px 0;
  margin-bottom: 30px;
}
.closeAnnexPage {
  position: absolute;
  right: 2vw;
  top: 2vh;
}

#CreateAccount span {
  color: white;
}

#CreateAccount button {
  font-size: var(--FormFontSize);
  padding: 0 20px;
  min-width: 160px;
  height: 50px;
}

#CreateAccountForm {
  padding: 20px;
  width: 500px;
  margin: 5% 0;
  font-size: var(--FormFontSize);
  background-color: var(--FormCouleurFond);
  text-align: center;
  border: none;
}

#CreateAccount h1 {
  margin-top: 0;
}

#CreateAccount #pswv, #CreateAccount #psw-repeatv {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

#CreateAccount .conditions-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
#CreateAccount .checkbox {
  min-width: 45px;
  min-height: 45px;
}

#CreateAccount hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0,0,0,.1);
}

#CreateAccount #usernamev, #CreateAccount #emailregv {
    text-align: left;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

#CreateAccount .formStyleRegister .eye {
  height: 15px;
}

#CreateAccount input {
  font-size: var(--FormFontSizeCarac);
}

#CreateAccount #txtPrivacy {
  cursor: pointer;
}

#CreateAccount #confirmCreateAccount {
  display: none;
  color: white;
  width: 100% !important;
  margin: 30px 0;
  padding: 20px;
  border-radius: 25px;
  max-width: unset;
  text-align: center;
  font-weight: bold;
}

/*Scrollbar mobile Create Account*/
.createAccount-popup-container::-webkit-scrollbar {
  width: 5px;
}
.createAccount-popup-container::-webkit-scrollbar-track {
  background : rgb(255 255 255 / 50%);
}
.createAccount-popup-container::-webkit-scrollbar-thumb {
  background: var(--FormCouleurSpin);
}
/*Mozilla version*/
.createAccount-popup-container {
    scrollbar-color: var(--FormCouleurSpin) rgb(255 255 255 / 50%);
}

@media screen and (max-width: 767px) {
  #CreateAccount {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
  }
  #CreateAccount #CreateAccountForm {
    width: 100%;
    height: 100%;
    padding: 10px;
    margin: 0;
    overflow-y: auto;
  }

  #CreateAccount.formStyleRegister h1, #mainDiv.txtStyle span {
    font-size: 2.5em !important;
  }

  #CreateAccount.formStyleRegister #textInstru, #CreateAccount.formStyleRegister #txt_passwordInfos {
    font-size: 1.2em !important;
  }


  /*Scrollbar mobile Create Account*/
  #CreateAccountForm::-webkit-scrollbar {
    width: 5px;
  }
  #CreateAccountForm::-webkit-scrollbar-track {
    background : rgb(255 255 255 / 50%);
  }
  #CreateAccountForm::-webkit-scrollbar-thumb {
    background: var(--FormCouleurSpin);
  }
  /*Mozilla version*/
  #CreateAccountForm {
      scrollbar-color: var(--FormCouleurSpin) rgb(255 255 255 / 50%);
  }
}