/* Colors */
/* Font Weights */
.account {
  padding: 14em 2em 8em 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.account .account-header {
  width: 100%;
  height: 58px;
  display: flex;
}
.account .account-header .se-connecter,
.account .account-header .reinitialiser {
  text-decoration: none;
  text-align: center;
  align-self: flex-end;
  width: 50%;
  font-size: 1.6rem;
  color: #01040D;
  border-bottom: 5px solid #e2e2e2;
  padding: 0 15px 15px 15px;
}
.account .account-header .current {
  font-weight: 700;
  color: #008F70;
  border-bottom: 5px solid #008F70;
}
.account .account-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #008F70;
  text-align: center;
  align-self: center;
}
.account .account-text {
  font-size: 1.6rem;
  color: #01040D;
  text-align: center;
}
.account .account-text span {
  font-weight: 700;
}

.account-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.account-form .remember-reset {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20%;
}
.account-form .remember-me {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  padding: 0 2px;
}
.account-form .remember-me input[type=checkbox] {
  width: 25px;
  height: 25px;
  padding: 0;
  margin-right: 1em;
  border-radius: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.account-form .remember-me input[type=checkbox]:after {
  width: 26px;
  height: 26px;
  border-radius: 26px;
  bottom: 2px;
  right: 2px;
  position: relative;
  background-color: #FFFFFF;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 1px solid #707070;
}
.account-form .remember-me input[type=checkbox]:checked:after {
  width: 26px;
  height: 26px;
  border-radius: 26px;
  bottom: 2px;
  right: 2px;
  position: relative;
  background-color: #008F70;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 1px solid #707070;
  box-shadow: inset 0 0 0px 3px #FFFFFF;
}
.account-form input,
.account-form .submit-button {
  width: 100%;
  height: 60px;
  font-size: 1.6rem;
  padding: 0 1em;
}
.account-form input ::-moz-placeholder, .account-form .submit-button ::-moz-placeholder {
  color: #5a5656;
}
.account-form input :-ms-input-placeholder, .account-form .submit-button :-ms-input-placeholder {
  color: #5a5656;
}
.account-form input ::placeholder,
.account-form .submit-button ::placeholder {
  color: #5a5656;
}
.account-form input {
  border: 1px solid #9b9b9b;
}
.account-form .password-container {
  position: relative;
  width: 100%;
}
.account-form .password-container #password {
  width: 100%;
  padding-right: 80px;
}
.account-form .password-container #password-eyecon {
  position: absolute;
  background-image: url("../icons/show-hide-password.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 40px;
  height: 25px;
  top: 55%;
  right: 20px;
  transform: translate(0, -50%);
}
.account-form a {
  text-decoration: none;
  color: #01040D;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
}
.account-form .submit-button {
  background: #008F70;
  border: none;
  font-weight: 700;
  color: #FFFFFF;
}

.account.connect {
  height: 812px;
}

.account-form.connect {
  height: 55%;
}

.account.reset {
  height: 660px;
}

.account-form.reset {
  height: 35%;
}

/* Media Queries */
@media only screen and (max-width: 360px) {
  .account .account-header .se-connecter,
.account .account-header .reinitialiser {
    font-size: 1.4rem;
  }
  .account .account-title {
    font-size: 2rem;
  }

  .account-form {
    height: 60%;
  }
  .account-form input,
.account-form label {
    font-size: 1.4rem;
  }
  .account-form a {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .account {
    height: 880px;
    padding: 16em 4em 8em 4em;
  }

  .account-form .remember-reset {
    flex-direction: row;
    align-items: center;
    place-self: center;
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .account {
    padding: 26em 14em 8em 14em;
  }
  .account .account-title {
    width: 90%;
  }
  .account .account-text {
    width: 80%;
    place-self: center;
  }

  .account-form .remember-reset {
    width: 90%;
  }
  .account-form input {
    width: 90%;
    align-self: center;
  }
  .account-form .submit-button {
    width: 50%;
    align-self: center;
  }
  .account-form .password-container {
    width: 90%;
    align-self: center;
  }
  .account-form .password-container #password {
    width: 100%;
  }

  .account.connect {
    height: 970px;
  }

  .account.reset {
    height: 840px;
  }
}
@media only screen and (min-width: 1280px) {
  .account.connect,
.account.reset {
    height: 760px;
    padding: 18em 25% 8em 25%;
  }
  .account.connect .account-text,
.account.reset .account-text {
    width: 100%;
  }

  .account-form .submit-button {
    cursor: pointer;
    transition: all 200ms linear;
  }
  .account-form .submit-button:hover {
    background: #1F1F1F;
    transition: all 200ms linear;
  }
  .account-form .remember-reset .remember-me,
.account-form .remember-reset input[type=checkbox],
.account-form .remember-reset label {
    cursor: pointer;
  }

  #password-eyecon {
    cursor: pointer;
    transition: 0.3s linear;
  }
  #password-eyecon:hover {
    opacity: 0.5;
  }
}
@media only screen and (min-width: 1440px) {
  .account.connect,
.account.reset {
    height: 900px;
    padding: 26em 30% 8em 30%;
  }
}
@media only screen and (min-width: 1920px) {
  .account.connect {
    height: 970px;
    padding: 26em 35% 8em 35%;
  }

  .account.reset {
    height: 870px;
    padding: 26em 35% 8em 35%;
  }
}/*# sourceMappingURL=user.css.map */