.satisfy-regular {
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-style: normal;
}

.bg-blue-90 {
  background-color: rgb(0 93 167 / 90%);
}

.img-bg {
  position: relative;
  overflow: hidden;
}

/* couches d'images */
.img-bg .bg-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.img-bg .bg-layer.active {
  opacity: 1;
}

/* les infos passent au-dessus */
.img-bg .bg-dark {
  position: relative;
  z-index: 2;
}

.bg-light.bg-opacity-25 {
  background-color: #7fa4cba1 !important
}



.bg-ny-blue {
  position: relative;
  overflow: hidden;
}

/* image miroir */
.bg-ny-blue .ny-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}

.bg-ny-blue .ny-layer.active {
  opacity: 1;
}

/* overlay bleu */
.bg-ny-blue::after {
  content: "";
  position: absolute;
  inset: 0;
  background: hsl(206.59deg 100% 32.75% / 95%);
  z-index: 1;
  pointer-events: none;
}

/* contenu au-dessus */
.bg-ny-blue > * {
  position: relative;
  z-index: 2;
}


.password-toggle {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
  z-index: 5;
}

.password-toggle:hover {
  color: #212529;
}
