.background-carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* push behind content */
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}



@keyframes moveOverlay {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.card,
.card * {
    cursor: default !important;
    user-select: none;
}


.content {
    position: relative;
    z-index: 1;
    color: rgb(0, 0, 0);
    text-align: center;
    padding-top: 20vh;
}

.darkmode {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(34, 34, 34, 0.347);
    animation: moveOverlay 60s infinite linear;
}


/* Logo */
.logo{
    border-radius: 2cm;
    border: 2px solid rgba(0, 0, 0, 0.627);
    width: 100%;
    max-width: 150px;
    margin-bottom: 10px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.545);
}

hr{
    margin-top: -10px;
    height: 5px;
}

/* Form container */

.container form{
    width: 1000px;
}