/* Login page specific: Topbar + spacing (no functional changes) */

.lp-topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(249, 249, 249, 0.85);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

.lp-topbar__inner{
  width: min(100% - 32px, 1100px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.lp-logo{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

.lp-brand__text{
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Damit die Card sauber mittig bleibt trotz Topbar */
.container{
  min-height: calc(100dvh - 64px);
}

@media (max-width: 600px){
  .lp-topbar{ height: 56px; }
  .container{ min-height: calc(100dvh - 56px); }
  .lp-logo{ width: 32px; height: 32px; }
}


/* Safety: nichts darf Klicks auf Inputs/Button blockieren */
body::before { pointer-events: none !important; }   /* falls du noch den Fallback drin hast */
.lp-topbar { pointer-events: auto; }

.container, .card { position: relative; z-index: 1; }
.lp-topbar { position: relative; z-index: 5; }
