.login-carousel {
  height: 100%;
  width: 50vw;
  position: relative;

  img {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    transition: opacity 1s ease-in-out;
    z-index: 0; /* Ensure hidden images are behind the visible image */

    &[data-active=true] {
      opacity: 1; /* Make the currently visible image fully visible */
      z-index: 1; /* Ensure it sits above other images */
    }
  }
}
