﻿#login-wrapper {
  min-height: 90vh;
  padding-top: 104px;
  margin-top: -104px;
}

#login-button {
  top: 1.5rem;
  z-index: 1040;
}

#credentials-container {
  min-width: 442px !important;
}

#image-slider {
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
#image-slider > div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-wrap: nowrap;
  animation: slide-image 120000ms ease-in-out infinite;
  width: 100vw;
}
#image-slider > div > * {
  flex: 0 0 100%;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
}
#image-slider > div > *:nth-child(1) {
  background-image: url("/Images/Slides/Banner-1-1080.jpg");
}
#image-slider > div > *:nth-child(2) {
  background-image: url("/Images/Slides/Banner-2-1080.jpg");
}
#image-slider > div > *:nth-child(3) {
  background-image: url("/Images/Slides/Banner-3-1080.jpg");
}
#image-slider > div > *:nth-child(4) {
  background-image: url("/Images/Slides/Banner-4-1080.jpg");
}
#image-slider > div > *:nth-child(5) {
  background-image: url("/Images/Slides/Banner-1-1080.jpg");
}

@keyframes slide-image {
  0% {
    left: 0;
  }
  12.2916666667% {
    left: 0;
  }
  12.7083333333% {
    left: -100vw;
  }
  37.2916666667% {
    left: -100vw;
  }
  37.7083333333% {
    left: -200vw;
  }
  62.2916666667% {
    left: -200vw;
  }
  62.7083333333% {
    left: -300vw;
  }
  87.2916666667% {
    left: -300vw;
  }
  87.7083333333% {
    left: -400vw;
  }
  100% {
    left: -400vw;
  }
}
