body {
  background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
}
.card {
  border-radius: 1.2rem;
  border: none;
}
.card .form-label {
  font-weight: 500;
}
.btn-primary {
  background: linear-gradient(90deg, #6366f1 0%, #2563eb 100%);
  border: none;
  font-weight: 600;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #2563eb 0%, #6366f1 100%);
}
img[alt="Logo"] {
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 8px;
}

/* CSS untuk SVG logo */
img[alt="Logo"][src$=".svg"] {
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 8px;
  width: auto;
  height: auto;
  max-width: 120px;
  max-height: 60px;
}

/* Bottom Navigation Bar (Customer) */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}
.bottom-nav .nav-item {
  flex: 1;
  text-align: center;
  color: #64748b;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 0 0 0;
  background: none;
  border: none;
  outline: none;
  transition: color 0.2s, background 0.2s;
  border-radius: 0;
  position: relative;
}
.bottom-nav .nav-item.active,
.bottom-nav .nav-item:active,
.bottom-nav .nav-item:focus {
  color: #2563eb;
  background: #f1f5f9;
}
.bottom-nav .nav-item.active::after {
  content: '';
  display: block;
  margin: 0 auto;
  margin-top: 2px;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg,#2563eb 60%,#60a5fa 100%);
  transition: background 0.2s;
}
.bottom-nav .nav-item i {
  display: block;
  font-size: 22px;
  margin-bottom: 2px;
  transition: color 0.2s;
}
@media (max-width: 600px) {
  .bottom-nav { height: 56px; }
  .bottom-nav .nav-item i { font-size: 20px; }
}
body { padding-bottom: 64px !important; }
