@charset "UTF-8";
html {
  font-size: 16px;
  /* 1rem = 16px */
}

html {
  font-size: 16px;
  /* 1rem = 16px */
}

.LoginForm {
  display: flex;
  flex-direction: column;
  width: min(26rem, 100%);
  max-width: 100%;
  min-height: 28rem;
  height: auto;
  background: rgba(112, 112, 112, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10.8px);
  -webkit-backdrop-filter: blur(10.8px);
  border-radius: 1rem;
  border: solid 0.5px #707070;
  padding: 1rem;
  margin: auto;
  box-sizing: border-box;
  overflow-x: hidden;
}
.LoginForm h1 {
  font-size: 2rem;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
}
.LoginForm form {
  display: flex;
  flex-direction: column;
  align-self: auto;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.LoginForm form div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.LoginForm form div label {
  font-size: 1rem;
  font-weight: 501;
  overflow-wrap: break-word;
}
.LoginForm form div {
  margin-top: auto;
  margin-bottom: auto;
}
.LoginForm form div input {
  --smooth-duration: 1500ms;
  --smooth-ease: cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform var(--smooth-duration) var(--smooth-ease), opacity var(--smooth-duration) var(--smooth-ease), background-color var(--smooth-duration) ease, border-color var(--smooth-duration) ease, color var(--smooth-duration) ease, box-shadow var(--smooth-duration) var(--smooth-ease), filter var(--smooth-duration) var(--smooth-ease);
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  backface-visibility: hidden;
}
.LoginForm form div input:hover, .LoginForm form div input:focus-visible {
  --smooth-duration: 1100ms;
  --smooth-ease: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (prefers-reduced-motion: reduce) {
  .LoginForm form div input {
    transition-duration: 0.01ms;
  }
}
.LoginForm form div input {
  height: 2rem;
  width: 100%;
  max-width: 100%;
  border-radius: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border: solid 0.5px #707070;
  background-color: #ffffff;
  box-sizing: border-box;
}
.LoginForm form div input:hover {
  border: solid 0.5px #0A0B0A;
}
.LoginForm form .remember_me {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: auto;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.LoginForm form .remember_me label {
  font-size: 1rem;
  font-weight: 500;
  margin-top: auto;
  margin-bottom: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}
.LoginForm form .remember_me input {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  padding: 0;
  flex-shrink: 0;
}
.LoginForm form .remember_me #id_remember_me {
  border-radius: 0.5rem !important;
  border: solid 1px #707070 !important;
}
.LoginForm form button {
  --smooth-duration: 1500ms;
  --smooth-ease: cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform var(--smooth-duration) var(--smooth-ease), opacity var(--smooth-duration) var(--smooth-ease), background-color var(--smooth-duration) ease, border-color var(--smooth-duration) ease, color var(--smooth-duration) ease, box-shadow var(--smooth-duration) var(--smooth-ease), filter var(--smooth-duration) var(--smooth-ease);
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  backface-visibility: hidden;
}
.LoginForm form button:hover, .LoginForm form button:focus-visible {
  --smooth-duration: 1100ms;
  --smooth-ease: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (prefers-reduced-motion: reduce) {
  .LoginForm form button {
    transition-duration: 0.01ms;
  }
}
.LoginForm form button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 8rem;
  max-width: 100%;
  background-color: #f7f7ff;
  border-radius: 0.5rem;
  border: solid 1px #707070;
  text-decoration: none;
  box-sizing: border-box;
  overflow: hidden;
  --smooth-duration: 1500ms;
  --smooth-ease: cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform var(--smooth-duration) var(--smooth-ease), opacity var(--smooth-duration) var(--smooth-ease), background-color var(--smooth-duration) ease, border-color var(--smooth-duration) ease, color var(--smooth-duration) ease, box-shadow var(--smooth-duration) var(--smooth-ease), filter var(--smooth-duration) var(--smooth-ease);
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  backface-visibility: hidden;
}
.LoginForm form button:hover, .LoginForm form button:focus-visible {
  --smooth-duration: 1100ms;
  --smooth-ease: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (prefers-reduced-motion: reduce) {
  .LoginForm form button {
    transition-duration: 0.01ms;
  }
}
.LoginForm form button p {
  margin: auto;
  font-size: 1rem;
  color: inherit;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  padding-inline: 0.35rem;
  box-sizing: border-box;
  line-height: 1.1;
  transition: color 550ms cubic-bezier(0.22, 1, 0.36, 1), transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}
.LoginForm form button:hover, .LoginForm form button:focus-visible {
  background-color: #ffffff;
  border-color: #0A0B0A;
}
.LoginForm form button:hover p, .LoginForm form button:focus-visible p {
  color: #81A1B8;
  transition-duration: 280ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (prefers-reduced-motion: reduce) {
  .LoginForm form button p {
    transition-duration: 0.01ms;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .LoginForm form button {
    width: 7.5rem;
  }
}
@media screen and (max-width: 360px) {
  .LoginForm form button {
    width: 8.5rem;
    height: 2.6rem;
  }
  .LoginForm form button p {
    font-size: 0.95rem;
  }
}
.LoginForm form button {
  color: #0A0B0A;
  text-align: center;
  width: min(24rem, 100%);
  max-width: 100%;
  align-self: center;
  background-color: #091226;
  margin-top: 2rem;
  box-sizing: border-box;
}
.LoginForm form button p {
  --smooth-duration: 1500ms;
  --smooth-ease: cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform var(--smooth-duration) var(--smooth-ease), opacity var(--smooth-duration) var(--smooth-ease), background-color var(--smooth-duration) ease, border-color var(--smooth-duration) ease, color var(--smooth-duration) ease, box-shadow var(--smooth-duration) var(--smooth-ease), filter var(--smooth-duration) var(--smooth-ease);
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  backface-visibility: hidden;
}
.LoginForm form button p:hover, .LoginForm form button p:focus-visible {
  --smooth-duration: 1100ms;
  --smooth-ease: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (prefers-reduced-motion: reduce) {
  .LoginForm form button p {
    transition-duration: 0.01ms;
  }
}
.LoginForm form button p {
  color: #e5e5e5;
  overflow-wrap: break-word;
  word-break: break-word;
}
.LoginForm form button:hover {
  background-color: #051440;
  border: solid 1px #0A0B0A;
}
.LoginForm form button:hover p {
  color: #ffffff;
}
.LoginForm .forget_password {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.LoginForm .forget_password p {
  font-weight: 400;
  font-size: 0.8rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.LoginForm .out_form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.5rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
.LoginForm .out_form p {
  font-size: 0.8rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.LoginForm .out_form a p {
  font-weight: bold;
}

/* ****************************************************** */
/* Media queries */
/* iPhone X/XS/11 Pro */
/* iPhone 11 */
@media screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) {
  .LoginForm {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: min(94vw, 100%);
    max-width: 100%;
    box-sizing: border-box;
    width: min(26rem, 100%);
    max-width: 100%;
    min-height: auto;
    padding: 1rem;
  }
  .LoginForm #loginFormButton {
    width: 100%;
    max-width: 100%;
  }
}
/* Samsung Galaxy S21 FE */
@media screen and (min-device-width: 360px) and (max-device-width: 1080px) and (-webkit-min-device-pixel-ratio: 2.5) {
  .LoginForm {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: min(94vw, 100%);
    max-width: 100%;
    box-sizing: border-box;
    width: min(26rem, 100%);
    max-width: 100%;
    min-height: auto;
    padding: 1rem;
  }
  .LoginForm #loginFormButton {
    width: 100%;
    max-width: 100%;
  }
}
/* Très petits mobiles */
@media screen and (max-width: 360px) {
  .LoginForm {
    width: 100%;
    min-height: auto;
    padding: 0.75rem;
  }
  .LoginForm h1 {
    font-size: 1.35rem;
  }
  .LoginForm form {
    gap: 0.85rem;
  }
  .LoginForm form .remember_me {
    align-items: flex-start;
  }
  .LoginForm form .remember_me label {
    font-size: 0.9rem;
  }
  .LoginForm form .remember_me input {
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
  }
  .LoginForm form button,
  .LoginForm form #loginFormButton {
    width: 100%;
  }
  .LoginForm .forget_password p,
  .LoginForm .out_form p {
    font-size: 0.75rem;
  }
}
/* Mobiles classiques */
@media screen and (min-width: 361px) and (max-width: 414px) {
  .LoginForm {
    width: 100%;
    min-height: auto;
    padding: 0.9rem;
  }
  .LoginForm form button,
  .LoginForm form #loginFormButton {
    width: 100%;
  }
}
/* Mobiles grands */
@media screen and (min-width: 415px) and (max-width: 480px) {
  .LoginForm {
    width: min(24rem, 100%);
    min-height: auto;
  }
  .LoginForm form button,
  .LoginForm form #loginFormButton {
    width: 100%;
  }
}
/* Mobiles très larges / pliables */
@media screen and (min-width: 481px) and (max-width: 600px) {
  .LoginForm {
    width: min(25rem, 100%);
    min-height: auto;
  }
}
/* Petites tablettes / smartphones paysage */
@media screen and (min-width: 601px) and (max-width: 768px) {
  .LoginForm {
    width: min(26rem, 100%);
    min-height: auto;
  }
}
/* Tablettes portrait */
@media screen and (min-width: 769px) and (max-width: 900px) {
  .LoginForm {
    width: min(26rem, 100%);
  }
}
/* Tablettes paysage */
@media screen and (min-width: 901px) and (max-width: 1024px) {
  .LoginForm {
    width: min(26rem, 100%);
  }
}/*# sourceMappingURL=LoginForm.css.map */