/* [project]/src/components/Navbar.css [app-client] (css) */
.navbar {
  z-index: 1000;
  border-radius: var(--radius-lg);
  width: clamp(300px, 96%, 1400px);
  margin: 1rem auto;
  padding: .75rem 0;
  position: sticky;
  top: 1rem;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
  padding: 0 4% !important;
}

.logo {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-background-clip: text;
  background-clip: text;
  flex-shrink: 0;
  align-items: center;
  gap: .75rem;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
}

.logo-img {
  object-fit: contain;
  -webkit-text-fill-color: initial;
  width: 32px;
  height: 32px;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }
}

.nav-wrapper {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  display: flex;
}

.nav-links {
  gap: 1.5rem;
  font-weight: 500;
  display: flex;
}

@media (min-width: 1200px) {
  .nav-links {
    gap: 2.5rem;
  }

  .nav-wrapper {
    gap: 4rem;
  }
}

.nav-links a {
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-auth {
  flex-shrink: 0;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.btn-sm {
  white-space: nowrap;
  padding: .5rem 1rem;
  font-size: .85rem;
}

.mobile-toggle {
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  display: none;
}

.mobile-toggle .bar {
  background: var(--foreground);
  width: 25px;
  height: 3px;
  transition: var(--transition-normal);
  border-radius: 3px;
}

@media (max-width: 1100px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-wrapper {
    background: var(--surface);
    width: min(300px, 80%);
    height: 100vh;
    transition: var(--transition-normal);
    z-index: 1000;
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3rem;
    padding: 6rem 2rem;
    position: fixed;
    top: 0;
    right: -100%;
    box-shadow: -10px 0 30px #00000080;
  }

  .nav-wrapper.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-auth {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
  }
}

/* [project]/src/app/admin-login/login.css [app-client] (css) */
.login-page {
  background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, var(--background) 100%);
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.login-container {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.premium-login-box {
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #ffffff05;
  border-radius: 24px;
  width: 100%;
  max-width: 450px;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px #00000080;
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-header h2 {
  background: linear-gradient(135deg, #fff 0%, #a0aec0 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-bottom: .5rem;
  font-size: 2rem;
}

.login-header p {
  color: #a0aec0;
  margin: 0;
  font-size: 1rem;
}

.error-badge {
  color: #ef4444;
  text-align: center;
  background: #ef44441a;
  border: 1px solid #ef444433;
  border-radius: 12px;
  margin-bottom: 2rem;
  padding: 1rem;
  font-size: .9rem;
}

.login-form {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.login-form .form-group {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.login-form label {
  color: #cbd5e0;
  font-size: .85rem;
}

.login-form .form-control {
  color: #fff;
  background: #ffffff08;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  width: 100%;
  padding: 1rem;
  transition: all .2s;
}

.login-form .form-control:focus {
  border-color: var(--primary);
  background: #6366f10d;
  outline: none;
}

.login-footer {
  text-align: center;
  color: #718096;
  border-top: 1px solid #ffffff0d;
  margin-top: 2.5rem;
  padding-top: 2rem;
  font-size: .9rem;
}

.login-footer .footer-links {
  justify-content: center;
  gap: 1.5rem;
  margin-top: .75rem;
  display: flex;
}

.login-footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.login-footer a.secondary {
  color: var(--secondary);
}

/*# sourceMappingURL=src_bdb139cf._.css.map*/