body {
  background-color: #f3f4f6;
}

.logo-img {
  width: 200px;
}

#main-logo-container {
  margin-bottom: 15px;
}

.bg-primary-600 {
  background-color: hsl(
    var(--client-color-h),
    var(--client-color-s),
    var(--client-color-l)
  ) !important;
}

.instruction {
  margin-bottom: 15px;
}

#password-requirements {
  background: #f3f4f6;
  padding: 10px;
  border-radius: 8px;
}

#requirements-list {
  font-size: 0.8rem;
  border-spacing: 10px 5px;
  border-collapse: separate;
}

/*
* Custom Login Page
*/
.login-content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem 1rem 5rem;
}

.content-wrapper {
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #f3f4f6;
}

/*
* Waves Animation
*/
.waves {
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
}

.parallax > use {
  animation: move-forever 150s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  opacity: 0.04;
  width: 400%;
  fill: var(--primary-color);
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translateX(-270px) scaleX(3);
  }
  100% {
    transform: translateX(255px) scaleX(3);
  }
}

/*
* Logo styling
*/
#main-logo-container.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.logo {
  max-width: 80%;
  animation: logo-popup 1s ease-in-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

@keyframes logo-popup {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*
* Form styling
*/
.form-container {
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/*
* Footer styling
*/
.login-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  z-index: 10;
  background: #f3f4f6;
}

.footer-content {
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.local-container {
  margin-left: auto;
}

.imprint-container {
  color: #626262;
}

.imprint-container a:hover {
  color: #000000;
}

#kc-form-buttons input[type="submit"] {
  background: #00325d;
  width: 100%;
  color: white;
  padding: 10px;
  border-radius: 7px;
  margin-top: 10px;
  cursor: pointer;
}

#kc-register-form > div {
  margin-top: 10px;
}

#kc-register-form > div > div > input {
  width: 100%;
  border: 1px solid #d0d0d0;
  margin-top: 5px;
  border-radius: 7px;
}

#kc-register-form > div > div > label {
  color: #5a5a5a;
  font-size: 0.9rem;
}