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

html {
  font-size: 62.5%;
  font-family: "DM Sans", sans-serif;
}

body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1f1f47;
  overflow: auto;
}

.container {
  padding: 2rem;
  width: 40rem;
  height: 100%;

  border-radius: 1rem;
  -webkit-box-shadow: 0 1rem 2rem rgba(31, 38, 135, 0.37);
          box-shadow: 0 1rem 2rem rgba(31, 38, 135, 0.37);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(1.8rem);
          backdrop-filter: blur(1.8rem);
  color: #fff;
  text-align: center;
}
.container .search {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.4rem;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  display:flex;
}

/* search input */
.container .search input {
  width: 100%;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  outline: none;
}

/* input fokus */
.container .search input:focus {
  outline: none;
}

/* placeholder */
.container .search input::placeholder {
  color: #fff;
}

/* search button */
.container .search button {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* search button hover */
.container .search button:hover {
  color: #5c9df1;
}

.container .table {
  margin: 2rem 0;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

/* data not-found */
.container .table .not-found {
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.container .table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.container .table td {
  padding: 5px 5px 5px 5px;
  font-size: 13px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
td:nth-child(1) {
  width: 10%;
}
td:nth-child(2) {
  width: 35%;
}
td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  font-weight: bold;
}
td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

hr {
  border: 1px solid #5c9df1;
  border-radius: 5px;
  width: 100%;
  margin: 2rem 0;
}
 


.container .btn-group button {
  margin: 1.5rem 0.7rem;
  padding: 1rem 2.2rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.4rem;
  font-size: 1.5rem;
}

.container .btn-group button:nth-of-type(2) {
  background-color: transparent;
}

/* footer selalu di bawah */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 1rem;
  margin-left: -2rem;
  color: #fff;
}

.blob {
  /* blob jadi background */
  background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, from(#5c9df1), to(#5c9df1));
  background: radial-gradient(circle, #5c9df1, #5c9df1);
  width: 50%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-animation: move 10s infinite;
          animation: move 10s infinite;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translate(-400px, -100px) rotate(-90deg);
            transform: translate(-400px, -100px) rotate(-90deg);
    border-radius: 24% 76% 35% 65% / 76% 24% 33% 67%;
  }
  100% {
    -webkit-transform: translate(400px, 100px) rotate(-10deg);
            transform: translate(400px, 100px) rotate(-10deg);
    border-radius: 76% 24% 33% 67% / 24% 76% 35% 65%;
  }
}

@keyframes move {
  0% {
    -webkit-transform: translate(-400px, -100px) rotate(-90deg);
            transform: translate(-400px, -100px) rotate(-90deg);
    border-radius: 24% 76% 35% 65% / 76% 24% 33% 67%;
  }
  100% {
    -webkit-transform: translate(400px, 100px) rotate(-10deg);
            transform: translate(400px, 100px) rotate(-10deg);
    border-radius: 76% 24% 33% 67% / 24% 76% 35% 65%;
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    height: 100%;
    /* agar agak naik keatas */
    margin-top: -2rem;
  }
  .container .table {
    font-size: 12px;
  }
  .container .btn-group button {
    padding: 1rem 1.5rem;
  }
}

/* Responsive */
@media screen and (max-width: 425px) {
  .container {
    width: 100%;
    height: 100%;
  }
  .container .table {
    font-size: 12px;
  }
  .container .btn-group button {
    padding: 1rem 1.5rem;
  }
}

/* Responsive */
@media screen and (max-width: 320px) {
  .container {
    width: 100%;
    height: 100%;
  }
  .container .table {
    font-size: 12px;
  }
  .container .btn-group button {
    padding: 1rem 1.5rem;
  }
}