/* Slideshow container behind login form */
.slideshow-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* visible, but below login card */
    overflow: hidden;
}

/* Images fade in/out */
.slideshow-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Boost login region above slideshow */
#page-login-index #region-main {
    position: relative;
    z-index: 100; /* force above slideshow */
}

/* Login card styling */
#page-login-index #region-main .card {
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    padding: 20px;
}

/* Navigation arrows */
.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: rgba(0,0,0,0.4);
    padding: 10px;
    cursor: pointer;
    z-index: 5; /* above images but below login card */
    user-select: none;
}

.slideshow-arrow.left { left: 20px; }
.slideshow-arrow.right { right: 20px; }

/* Richard Slideshow css*/
.slideshow-arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 2em;
  color: white;
  padding: 10px;
  user-select: none;
  z-index: 10;
}
.slideshow-arrow.left { left: 10px; }
.slideshow-arrow.right { right: 10px; }
