body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background: url("/img/logo.png") no-repeat center center fixed;
  background-size: 60% auto; /* KONTROL UKURAN LOGO */
}

/* OVERLAY AGAR TIDAK TERLALU TERANG */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}

.login-card {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;

  /* GLASS EFFECT */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.login-logo img {
  width: 100px;
}

label {
  color: #fff;
}

.form-control {
  background: rgba(255, 255, 255, 0.85);
  border: none;
}

.form-control:focus {
  box-shadow: none;
  border: none;
}

.text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}
