#entry-page {
  background-image: url("../images/home-bg.webp");
  animation: fadeIn .6s ease;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#login-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#login-container {
  animation: fadeIn 1s ease;
  margin-bottom: 80px;
  background-color: rgba(255, 255, 255, 0.8); 
  border-radius: 20px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.test {
  position: relative;
}

.test::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/bg-dalam.png');
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
}

#card-jumlah_pariwisata-container {
  /* background-color: red; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  width: 100%;
  justify-items: center;
  gap: 10px;

  .card-wrapper {
    width: 100%;
    padding: 10px;
    width: 200px;

    .card-content {
      padding: 10px;
      background-color: #fff;
      display: flex;
      flex-direction: row;
      gap: 8px;
      border-radius: 10px;
      align-items: center;
      box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);

      .jumlah {
        padding: 10px;
        border-right: 1px solid black;
        font-size: 24px;
        color: #008374;
        font-weight: 700;
      }

      .kecamatan {
        padding: 10px;
        color: #000;
        font-weight: 500;
      }
    }
  }
}


@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}