
   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


    body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
  height: 100dvh;
  position: relative;
  overflow: hidden;

  display: flex;
            justify-content: center;
            align-items: end;
            overflow: hidden;
}

body::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('jungle-mist-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;

  animation: bganim 8s ease-in-out infinite alternate;
}



  /*          height: 100vh;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: end;
            overflow: hidden;
*/

    .background {
  position: absolute;
  width: 100vh;
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)),
    url('jungle-mist-bg.png') no-repeat center center;
  background-size: cover;
  animation: bganim 8s ease-in-out infinite alternate;
  z-index: -1;
  border: 1px solid red;
}

@keyframes bganim {
  from {
    transform: scale(1);
    filter: brightness(1);
  }
  to {
    transform: scale(1.25);
    filter: brightness(0.7);
  }
}

@keyframes fganim {
  from {
    transform: scale(1);
    }
  to {
    transform: scale(0.80);

  }
}


    img {
    animation: fganim 8s ease-in-out infinite alternate;
    transform-origin: bottom center;

    max-width: 90vw;
    max-height: 60vh;
    max-width: 90dvw;
    max-height: 60dvh;
      }





    .access-notice {
  margin-top: 20px;
  font-size: x-small;
  color: #888;
  text-align: justify;
  max--width: 320px;
  margin--left: auto;
  margin--right: auto;
  line-height: 1.2;
  text-transform: uppercase;

}



.login-form {
  animation: unfold 0.6s ease-out 8s both;
}

@keyframes unfold {
  from {
    opacity: 0;
    transform: scale(0.1);
    transform-origin: top left;
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



.login-container-warapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index:999;
  width: 100%;
  height: 100%;
  display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
}
.login-container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 400px;
  animation: unfold 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 3s both;
}

h1 {
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
  color: #333;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.input-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.input-group input:focus {
  border-color: #5a67d8; /* soft blue */
  outline: none;
}

button {
  width: 100%;
  padding: 14px 0;
  background-color: #5a67d8;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #434190;
}

@media (max-height: 700px) {
  h1 {
    margin-bottom: 15px;
  }
.login-container {
  padding: 12px;
}

.login-container-warapper {
  padding-top: 16px;
}
.access-notice {
    margin-top: 10px;
}
.input-group {
    margin-bottom: 10px;
}
}
/*
.hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, opacity 0.2s ease;
}

.visible {
  max-height: 500px;
  transition: max-height 2.5s ease, opacity 0.5s ease;
  overflow: hidden;
  opacity: 1;
}
*/
