/* Style khusus untuk Halaman Login & Navbar Navigasi */

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(236, 247, 253, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 69, 99, 0.12);
  padding: 10px 20px;
}

.navbar__container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--deep);
}

.navbar__logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.navbar__title {
  display: none;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar__link {
  font-size: 0.92rem;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar__link:hover {
  color: var(--deep);
  background: rgba(14, 69, 99, 0.08);
}

.navbar__link--active {
  color: var(--surface);
  background: var(--deep);
  font-weight: 500;
}

.navbar__link--active:hover {
  color: var(--surface);
  background: var(--deep-strong);
}

@media (max-width: 480px) {
  .navbar {
    padding: 8px 12px;
  }
  .navbar__title {
    display: none;
  }
  .navbar__brand {
    gap: 0;
  }
  .navbar__logo {
    width: 28px;
    height: 28px;
  }
  .navbar__links {
    gap: 4px;
  }
  .navbar__link {
    font-size: 0.78rem;
    padding: 6px 10px;
    white-space: nowrap;
  }
}
