.login-carousel {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;

  img {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    transition: opacity 1s ease-in-out;
    z-index: 0;

    &[data-active=true] {
      opacity: 1;
      z-index: 1;
    }
  }
}
