/* Páginas públicas: login, cadastro, admin login — visual premium */

.bvx-guest-head {
  background: linear-gradient(135deg, var(--bvx-primary) 0%, #312e81 48%, var(--bvx-secondary) 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.15);
}

.bvx-guest-logo-nav {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px;
}

.bvx-guest-brand-title {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.bvx-guest-brand-sub {
  font-size: 0.8rem;
  opacity: 0.85;
  max-width: 220px;
}

.bvx-page-admin-login {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(99, 102, 241, 0.38), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(14, 165, 233, 0.18), transparent),
    radial-gradient(ellipse 40% 35% at 0% 90%, rgba(168, 85, 247, 0.12), transparent),
    linear-gradient(165deg, #0b1120 0%, #020617 55%, #0f172a 100%);
}

.bvx-page-admin-login .bvx-guest-head {
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(8px);
}

.bvx-page-admin-login .bvx-main.bvx-guest-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.bvx-page-admin-login .bvx-auth-wrap {
  max-width: 420px;
  width: 100%;
}

.bvx-page-admin-login .bvx-auth-card {
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.08),
    0 24px 64px rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(16px);
  background: rgba(15, 23, 42, 0.78) !important;
}

.bvx-page-admin-login .bvx-auth-card .card-header-lite {
  background: linear-gradient(120deg, rgba(99, 102, 241, 0.18), rgba(14, 165, 233, 0.08)) !important;
}

.bvx-page-admin-login .bvx-auth-card .form-control:focus {
  border-color: rgba(129, 140, 248, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.bvx-page-admin-login .bvx-guest-footer {
  margin-top: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.bvx-auth-wrap {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.bvx-auth-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.bvx-auth-card .card-header-lite {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.08), rgba(14, 165, 233, 0.06));
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1.25rem 1.5rem;
}

.bvx-auth-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.bvx-auth-lead {
  color: var(--bvx-muted, #64748b);
  font-size: 0.9rem;
  margin: 0;
}

.bvx-guest-footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: rgba(255, 255, 255, 0.88);
  padding-top: 3rem;
  padding-bottom: 2rem;
  margin-top: auto;
}

.bvx-guest-footer h6 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.bvx-guest-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.bvx-guest-footer a:hover {
  color: #fff;
}

.bvx-guest-footer .bvx-footer-logo {
  height: 40px;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.bvx-fab-wa {
  position: fixed;
  z-index: 1080;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none !important;
  animation: bvx-wa-pulse 2.2s ease-in-out infinite;
}

.bvx-fab-wa:hover {
  transform: scale(1.06);
  color: #fff !important;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

@keyframes bvx-wa-pulse {
  0%,
  100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.15);
  }
}

@media (min-width: 992px) {
  .bvx-fab-wa {
    right: 1.75rem;
    bottom: 1.75rem;
    width: 62px;
    height: 62px;
    font-size: 1.85rem;
  }
}

.bvx-guest-main {
  max-width: 960px;
}
