
/* Redesigned Officer Login Button with Binary Animation */
.hero-login-wrapper {
  position: relative;
  z-index: 10;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.hero-login-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: rgba(10, 35, 66, 0.6);
  border: 1px solid rgba(0, 245, 212, 0.4);
  border-radius: 50px;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(0, 245, 212, 0.2), inset 0 0 20px rgba(0, 245, 212, 0.1);
  backdrop-filter: blur(5px);
  min-width: 220px;
}

.hero-login-btn canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  pointer-events: none;
}

.hero-login-btn .btn-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-login-btn .btn-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 5px rgba(0, 245, 212, 0.8));
}

.hero-login-btn .btn-text {
  background: linear-gradient(90deg, #fff, #00f5d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(0, 245, 212, 0.4);
}

.hero-login-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 30px rgba(0, 245, 212, 0.5), inset 0 0 30px rgba(0, 245, 212, 0.3);
  border-color: #00f5d4;
  background: rgba(10, 35, 66, 0.8);
}

.hero-login-btn:hover .btn-text {
  color: #fff;
  text-shadow: 0 0 10px #00f5d4;
}

.hero-login-btn .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: 3;
}

.hero-login-btn:hover .btn-shine {
  left: 100%;
  transition: 0.5s;
}
