html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  overflow: hidden;
}

body {
  background-image: url("/img/landing_page.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#wrapper-password {
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.card-password {
  width: 90%;
  max-width: 400px;
  padding: 25px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  gap: 2em;
}

.card-password > h1 {
  flex: 1;
  margin: 0;
  font-weight: lighter;
}

#password {
  flex: 1;
  font-size: 25px;
}

.button {
  flex: 1;
  background-color: #868667; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.button:hover {
  cursor: pointer;
  background-color: #979780;
}

#wrapper-loader {
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 85px;
  height: 25px;
  --g1: conic-gradient(from 90deg at left 3px top 3px, #0000 90deg, #fff 0);
  --g2: conic-gradient(
    from -90deg at bottom 3px right 3px,
    #0000 90deg,
    #fff 0
  );
  background: var(--g1), var(--g1), var(--g1), var(--g2), var(--g2), var(--g2);
  background-position: left, center, right;
  background-repeat: no-repeat;
  animation: l8 1s infinite;
}
@keyframes l8 {
  0% {
    background-size: 25px 100%, 25px 100%, 25px 100%;
  }
  20% {
    background-size: 25px 50%, 25px 100%, 25px 100%;
  }
  40% {
    background-size: 25px 50%, 25px 50%, 25px 100%;
  }
  60% {
    background-size: 25px 100%, 25px 50%, 25px 50%;
  }
  80% {
    background-size: 25px 100%, 25px 100%, 25px 50%;
  }
  100% {
    background-size: 25px 100%, 25px 100%, 25px 100%;
  }
}

@media (min-width: 320px) {
  body {
    background-size: auto;
    background-position: 58% 50%;
  }
  .card-password {
    width: 75%;
  }
}
@media (min-width: 481px) {
  body {
    background-size: auto;
    background-position: 58% 50%;
  }
  .card-password {
    width: 75%;
  }
}
@media (min-width: 641px) {
  body {
    background-size: auto;
    background-position: 58% 50%;
  }
  .card-password {
    width: 90%;
    max-width: 400px;
  }
}
@media (min-width: 961px) {
  body {
    background-size: cover;
  }
  .card-password {
    width: 90%;
    max-width: 400px;
  }
}
@media (min-width: 1025px) {
  body {
    background-size: cover;
  }
  .card-password {
    width: 90%;
    max-width: 400px;
  }
}
