body {
  min-height: 100% !important;
  display: flex;
  flex-direction: column;
  position: absolute !important;
  top: 0;
}
#authentication {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 40px;
}
#authentication #titre {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--titre);
  text-transform: uppercase;
  border-bottom: 2px solid var(--titre);
  padding: 30px 0 1px 0;
  margin: 115px 0 24px 0;
}
#authentication #titre span {
  font-size: 19px;
  transform: translateY(-5px) translateX(-2px);
}
#authentication .description,
#authentication .descriptiontitre {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0 auto;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 8px;
}
#authentication .description span,
#authentication .descriptiontitre span {
  font-weight: 400;
}
#authentication .descriptiontitre {
  font-size: 1.4rem;
  margin-top: 25px;
  margin-bottom: 20px;
  text-align: center;
}
#authentication .cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  width: fit-content;
  margin: 0 auto;
  gap: 30px;
  margin-bottom: 25px;
}
#authentication .cards .card {
  box-shadow: -1px 1px 2px 1px rgba(19, 104, 195, 0.52);
  padding: 14px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  width: 250px;
}
#authentication .cards .card .titrecard {
  font-size: 1.2rem;
  color: var(--titre);
  text-transform: uppercase;
  font-weight: 400;
  align-items: center;
  display: flex;
}
#authentication .cards .card .titrecard span {
  font-size: 1.4rem;
  margin-left: 4px;
}
#authentication .cards .card .descriptioncard {
  font-size: 1.1rem;
  font-weight: 300;
  text-align: justify;
}
#authentication .cards .card li {
  font-size: 1.1rem;
  font-weight: 300;
  list-style-type: disc;
  padding-left: 5px;
  margin-bottom: 5px;
  text-align: justify;
  line-height: 1.5;
}
#authentication .cards .card li span {
  font-weight: 400;
}
#authentication .cards .card li::marker {
  color: var(--titre);
}
@media (min-height: 850px) {
  #footer {
    position: absolute;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  #titre {
    margin-top: 70px !important;
    font-size: 20px !important;
    margin-bottom: 14px !important;
  }
  #authentication {
    width: 80% !important;
  }
  .cards-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    /* Dégradés sur les côtés */
  }
  .cards-wrapper .cards {
    flex-direction: row !important;
    align-items: center !important;
    padding: 10px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    background: white;
    width: 100% !important;
    justify-content: flex-start !important;
    position: relative;
  }
  .cards-wrapper .cards .card {
    width: fit-content !important;
    min-width: 260px;
  }
  .cards-wrapper::before,
  .cards-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25px;
    height: 93%;
    pointer-events: none;
    /* permet de cliquer/scroll à travers */
    z-index: 10;
    display: block;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .cards-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ebebeb, transparent);
  }
  .cards-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ebebeb, transparent);
  }
  .cards-wrapper.shadow-left::before {
    opacity: 1;
  }
  .cards-wrapper.shadow-right::after {
    opacity: 1;
  }
  #footer {
    position: relative !important;
    bottom: unset !important;
  }
}
