body {
  font-family: "Poppins", Arial, sans-serif;
}

.table {
  font-size: 0.9rem;
}

.table th {
  font-size: 0.9rem;
}

.login-page {
  background-image: url('../img/bg.webp');
  background-size: cover;
  background-position: center;
  background-color: rgba(24, 24, 24, 0.942);
}

.login-page-panel {
  -ms-flex-align: center;
  align-items: center;
  background-color: #323333;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  -ms-flex-pack: center;
  justify-content: center;
}

.info-box .info-box-icon {
  width: 100px !important;
}

.brand-text {
  letter-spacing: 1px;
}

.spinner-border {
  vertical-align: middle;
}

@keyframes blink-animation {
  0% {
    opacity: 1;
    /* Teks terlihat penuh */
  }

  50% {
    opacity: 0;
    /* Teks menghilang */
  }

  100% {
    opacity: 1;
    /* Teks kembali terlihat penuh */
  }
}

.text-berkedip {
  animation: blink-animation 1.5s infinite;
}

.main-header .nav-link {
  height: 100% !important;
}

.navbar-nav {
  gap: 10px;
}

.toasts-top-right {
  margin: 20px;
  min-width: 250px;
  z-index: 1070 !important;
}

.toasts-top-left {
  margin: 20px;
  min-width: 250px;
  z-index: 1070 !important;
}

.toasts-bottom-right {
  margin: 20px;
  min-width: 250px;
  z-index: 1070 !important;
}

.toasts-bottom-left {
  margin: 20px;
  min-width: 250px;
  z-index: 1070 !important;
}

.info-box {
  cursor: pointer;
}

@media (min-width:768px) {

  .login-box,
  .register-box {
    width: 460px;
  }
}