/* ===== Particles background layer ===== */
#particles-js{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("../img/bg-login.png"); */
  background-color: #0d3c72;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: 1;
  pointer-events: none;
}

#particles-js canvas{
  /* display: block; */
  display: inline-block;
  vertical-align: bottom;
}

.login-page { position: relative; }
.login-box  { position: relative; z-index: 2; }

/* ===== Footer ===== */
.login-footer {
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  /* color: white; */
  z-index: 2;
  color: rgba(255,255,255,0.7);
  margin-top: 20px;
}

.login-footer .footer-link {
  color: #fff;
  text-decoration: underline;
  margin: 0 3px;
}

.login-footer .footer-link:hover {
  color: #ffd700;
}

.footer-lang {
  display: block;
  margin-top: 3px;
}

/* ===== Konten ===== */
  .login-logo a {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 300;
  }
  .login-logo b {
    color: #ffc107;
  }
  
  .login-box .card {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    overflow: hidden;
  }

  /*input field */
  .form-control {
    border-radius: 8px 0 0 8px !important;
  }
  .input-group-text {
    border-radius: 0 8px 8px 0 !important;
    background-color: #f8f9fa;
  }

  /* Tombol Proses*/
  .btn-warning {
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
  }

.login-card-body a {
  transition: all 0.3s ease;
  color: #007bff;
}

.login-card-body a:hover {
  color: #0056b3;
  text-decoration: none;
}

.login-box .card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
}

/* Tampilan Mobile */
@media (max-width: 576px) {
  .login-page {
    align-items: flex-start;
    padding-top: 50px;
  }

  .login-box {
    width: 90%;
    margin: 20px auto;
  }

  .login-footer {
    position: relative;
    bottom: 0;
    margin-top: 40px;
    padding-bottom: 20px;
  }
}