
html, body {
  margin: 0;
  padding: 0;
  overflow: hidden; 
  height: 100%;
}

.top-logo-bar {
  position: relative;
  z-index: 1000;
  padding:  0;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  padding:0;
  
}

#logo-left, #logo-right {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: contrast(1.1) brightness(1.05);
  
}

#logo-left:hover, #logo-right:hover {
  transform: translateY(-4px) scale(1.08);
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.12));
}

#logo-left img, #logo-right img {
  height: clamp(80px, 8vw, 140px);
  width: auto;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}

/* Optional: Add depth effect on hover */
#logo-left:hover img, #logo-right:hover img {
  transform: perspective(1000px) rotateX(5deg) rotateY(0deg) rotateZ(-1deg);
}

/* Optional: Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.logo-container:hover img {
  animation: float 3s ease-in-out infinite;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(9, 243, 255, 0.4), 0 0 24px rgba(9, 243, 255, 0.2);
  filter: drop-shadow(0 0 6px rgba(9, 243, 255, 0.3));
  transition: all 0.3s ease;
  border-radius: 15px;
}


/* Bottom Logo Bar */
.bottom-logo-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Third Logo Specific Styles */
.logo3-wrapper {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  margin-right: 1rem;
}

.logo3-img {
  height: clamp(40px, 4vw, 70px) !important;
  filter: contrast(1.15) brightness(1.1);
  mix-blend-mode: luminosity;
}

.logo3:hover .logo3-img {
  transform: perspective(800px) rotateX(-5deg) rotateY(0deg) rotateZ(1deg);
  filter: drop-shadow(0 8px 15px rgba(9, 243, 255, 0.25));
}

.logo-container.logo3 {
  justify-content: flex-end;
}

@media (min-width: 1441px) {
  .login-bg {
    height: 420px;
  }
}

.heading {
  color: white;
  text-decoration: none;
  font-size: 25px;
  border: none;
  background: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  text-align: center;
}

.heading::before {
  margin-left: auto;
}

.heading::after,
.heading::before {
  content: '';
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  transition: 0.5s;
}

.heading:hover::after,
.heading:hover::before {
  width: 100%;
}





#login-background {
    /* background: #278181; */
    background: transparent;
    min-height: 100vh;
  }
  
  .login-form {
    border: 1px solid #000;
  }

  .login-bg{
    background-image:transparent;
    border: #45f3ff 1px solid;
  }


  /* From Uiverse.io by 00Kubi */ 
.neon-checkbox {
  --primary: #00ffaa;
  --primary-dark: #00cc88;
  --primary-light: #88ffdd;
  --size: 30px;
  position: relative;
  width: var(--size);
  height: var(--size);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.neon-checkbox input {
  display: none;
}

.neon-checkbox__frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.neon-checkbox__box {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  border: 2px solid var(--primary-dark);
  transition: all 0.4s ease;
}

.neon-checkbox__check-container {
  position: absolute;
  inset: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neon-checkbox__check {
  width: 80%;
  height: 80%;
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transform-origin: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.neon-checkbox__glow {
  position: absolute;
  inset: -2px;
  border-radius: 6px;
  background: var(--primary);
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.2);
  transition: all 0.4s ease;
}

.neon-checkbox__borders {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
}

.neon-checkbox__borders span {
  position: absolute;
  width: 40px;
  height: 1px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.neon-checkbox__borders span:nth-child(1) {
  top: 0;
  left: -100%;
  animation: borderFlow1 2s linear infinite;
}

.neon-checkbox__borders span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 1px;
  height: 40px;
  animation: borderFlow2 2s linear infinite;
}

.neon-checkbox__borders span:nth-child(3) {
  bottom: 0;
  right: -100%;
  animation: borderFlow3 2s linear infinite;
}

.neon-checkbox__borders span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 1px;
  height: 40px;
  animation: borderFlow4 2s linear infinite;
}

.neon-checkbox__particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 6px var(--primary);
}

.neon-checkbox__rings {
  position: absolute;
  inset: -20px;
  pointer-events: none;
}

.neon-checkbox__rings .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--primary);
  opacity: 0;
  transform: scale(0);
}

.neon-checkbox__sparks span {
  position: absolute;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
}

/* Hover Effects */
.neon-checkbox:hover .neon-checkbox__box {
  border-color: var(--primary);
  transform: scale(1.05);
}

/* Checked State */
.neon-checkbox input:checked ~ .neon-checkbox__frame .neon-checkbox__box {
  border-color: var(--primary);
  background: rgba(0, 255, 170, 0.1);
}

.neon-checkbox input:checked ~ .neon-checkbox__frame .neon-checkbox__check {
  stroke-dashoffset: 0;
  transform: scale(1.1);
}

.neon-checkbox input:checked ~ .neon-checkbox__frame .neon-checkbox__glow {
  opacity: 0.2;
}

.neon-checkbox
  input:checked
  ~ .neon-checkbox__frame
  .neon-checkbox__borders
  span {
  opacity: 1;
}

/* Particle Animations */
.neon-checkbox
  input:checked
  ~ .neon-checkbox__frame
  .neon-checkbox__particles
  span {
  animation: particleExplosion 0.6s ease-out forwards;
}

.neon-checkbox
  input:checked
  ~ .neon-checkbox__frame
  .neon-checkbox__rings
  .ring {
  animation: ringPulse 0.6s ease-out forwards;
}

.neon-checkbox
  input:checked
  ~ .neon-checkbox__frame
  .neon-checkbox__sparks
  span {
  animation: sparkFlash 0.6s ease-out forwards;
}

/* Animations */
@keyframes borderFlow1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes borderFlow2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200%);
  }
}

@keyframes borderFlow3 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

@keyframes borderFlow4 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-200%);
  }
}

@keyframes particleExplosion {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translate(
        calc(-50% + var(--x, 20px)),
        calc(-50% + var(--y, 20px))
      )
      scale(0);
    opacity: 0;
  }
}

@keyframes ringPulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes sparkFlash {
  0% {
    transform: rotate(var(--r, 0deg)) translateX(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: rotate(var(--r, 0deg)) translateX(30px) scale(0);
    opacity: 0;
  }
}

/* Particle Positions */
.neon-checkbox__particles span:nth-child(1) {
  --x: 25px;
  --y: -25px;
}
.neon-checkbox__particles span:nth-child(2) {
  --x: -25px;
  --y: -25px;
}
.neon-checkbox__particles span:nth-child(3) {
  --x: 25px;
  --y: 25px;
}
.neon-checkbox__particles span:nth-child(4) {
  --x: -25px;
  --y: 25px;
}
.neon-checkbox__particles span:nth-child(5) {
  --x: 35px;
  --y: 0px;
}
.neon-checkbox__particles span:nth-child(6) {
  --x: -35px;
  --y: 0px;
}
.neon-checkbox__particles span:nth-child(7) {
  --x: 0px;
  --y: 35px;
}
.neon-checkbox__particles span:nth-child(8) {
  --x: 0px;
  --y: -35px;
}
.neon-checkbox__particles span:nth-child(9) {
  --x: 20px;
  --y: -30px;
}
.neon-checkbox__particles span:nth-child(10) {
  --x: -20px;
  --y: 30px;
}
.neon-checkbox__particles span:nth-child(11) {
  --x: 30px;
  --y: 20px;
}
.neon-checkbox__particles span:nth-child(12) {
  --x: -30px;
  --y: -20px;
}

/* Spark Rotations */
.neon-checkbox__sparks span:nth-child(1) {
  --r: 0deg;
  top: 50%;
  left: 50%;
}
.neon-checkbox__sparks span:nth-child(2) {
  --r: 90deg;
  top: 50%;
  left: 50%;
}
.neon-checkbox__sparks span:nth-child(3) {
  --r: 180deg;
  top: 50%;
  left: 50%;
}
.neon-checkbox__sparks span:nth-child(4) {
  --r: 270deg;
  top: 50%;
  left: 50%;
}

/* Ring Delays */
.neon-checkbox__rings .ring:nth-child(1) {
  animation-delay: 0s;
}
.neon-checkbox__rings .ring:nth-child(2) {
  animation-delay: 0.1s;
}
.neon-checkbox__rings .ring:nth-child(3) {
  animation-delay: 0.2s;
}
.button2 {
  height: 2.8em;
  width: 9em;
  background: transparent;
  -webkit-animation: jello-horizontal 0.9s both;
  animation: jello-horizontal 0.9s both;
  border: 2px solid #0bffe3;
  outline: none;
  color: #0b0c0c;
  cursor: pointer;
  font-size: 17px;
}

.button2:hover {
  background: #016dd9;
  color: #ffffff;
  animation: squeeze3124 0.9s both, glowShadow 1.2s ease-in-out infinite;
  box-shadow: 0 0 10px 4px rgba(4, 234, 255, 0.8);
}

@keyframes glowShadow {
  0% {
    box-shadow: 0 0 5px 2px rgba(4, 234, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px 6px rgba(4, 234, 255, 1);
  }
  100% {
    box-shadow: 0 0 5px 2px rgba(4, 234, 255, 0.5);
  }
}

@keyframes squeeze3124 {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* From Uiverse.io by VijinV */ 
.inputbox {
  position: relative;
  width: 100%;
}

.inputbox input {
  position: relative;
  width: 100%;
  padding: 20px 10px 10px;
  background: transparent;
  outline: none;
  box-shadow: none;
  border: none;
  color: #23242a;
  font-size: 1em;
  letter-spacing: 0.05em;
  transition: 0.5s;
  z-index: 10;
}

.inputbox span {
  position: absolute;
  left: 0;
  padding: 20px 10px 10px;
  font-size: 1em;
  color: #8f8f8f;
  letter-spacing: 00.05em;
  transition: 0.5s;
  pointer-events: none;
}

.inputbox input:valid ~span,
.inputbox input:focus ~span {
  color: #45f3ff;
  transform: translateX(-10px) translateY(-34px);
  font-size: 0,75em;
}

.inputbox i {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #45f3ff;
  border-radius: 4px;
  transition: 0.5s;
  pointer-events: none;
  z-index: 9;
}

.inputbox input:valid ~i,
.inputbox input:focus ~i {
  height: 44px;
}

#map-background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: -1;
}

.leaflet-container {
  background: #00000000 !important;
  filter: grayscale(0.2);
}

.glowing-border {
  filter: url(#glow);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0% { opacity: 0.3; }
  50% { opacity: 0.6; }
  100% { opacity: 0.3; }
}

.pulsing-border {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px #656666);
}



/* Pulsing Marker Styles */
.pulse-marker {
  position: relative;
  filter: url(#glow);
}

.marker-core {
  width: 20px;
  height: 20px;
  background: #09f8cd;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: core-pulse 2s ease-in-out infinite;
  box-shadow: 
    0 0 25px #09f8cd,
    0 0 50px rgba(9, 248, 205, 0.5);
}

.inner-glow {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255,255,255,0.8) 0%,
    transparent 60%);
  mix-blend-mode: screen;
}

.pulse-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #09f8cd;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-wave 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  box-shadow: 0 0 15px rgba(9, 248, 205, 0.5);
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }

@keyframes core-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes pulse-wave {
  0% { 
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  100% { 
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}





/* Dynamic Particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #09f8cd;
  border-radius: 50%;
  left: var(--x);
  animation: 
    particle-float var(--speed) ease-in-out infinite,
    particle-glow 2s ease-in-out infinite;
  animation-delay: var(--delay);
  filter: url(#glow);
}

@keyframes particle-float {
  0% { 
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }
  50% { 
    transform: translateY(-40px) scale(1.2);
    opacity: 0.8;
  }
  100% { 
    transform: translateY(-80px) scale(0.5);
    opacity: 0;
  }
}



/* Enhanced Popup Text Effects */
.custom-popup .leaflet-popup-content-wrapper {
  transform: translateZ(20px);
  transition: all 0.3s ease-out;
  perspective: 1000px;
  background: linear-gradient(
    145deg,
    rgba(9, 248, 205, 0.2) 0%,
    rgba(9, 248, 205, 0.1) 100%
  ) !important;
  backdrop-filter: blur(12px) contrast(120%);
  border: 1px solid rgba(9, 248, 205, 0.4) !important;
  border-radius: 12px;
  overflow: visible;
}

.lyari-popup {
  position: relative;
  padding: 18px 28px;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight:700;
}

.glow-text {
  position: relative;
  display: inline-block;
  font-size: 1.4em;
  color: #09f8cd;
  text-shadow: 
    0 0 10px rgba(9, 248, 205, 0.8),
    0 0 20px rgba(9, 248, 205, 0.6),
    0 0 30px rgba(9, 248, 205, 0.4);
  animation: text-glow 2s ease-in-out infinite;
}

@keyframes text-glow {
  0%, 100% { 
    text-shadow: 
      0 0 10px rgba(9, 248, 205, 0.8),
      0 0 20px rgba(9, 248, 205, 0.6),
      0 0 30px rgba(9, 248, 205, 0.4);
  }
  50% { 
    text-shadow: 
      0 0 20px rgba(9, 248, 205, 1),
      0 0 40px rgba(9, 248, 205, 0.8),
      0 0 60px rgba(9, 248, 205, 0.6);
    transform: scale(1.02);
  }
}

/* Enhanced Hover Effects */
.custom-popup:hover .leaflet-popup-content-wrapper {
  transform: translateZ(30px) rotateX(8deg) rotateY(8deg) scale(1.05);
  box-shadow: 
    0 0 50px rgba(9, 248, 205, 0.8),
    0 0 80px rgba(9, 248, 205, 0.6);
}

/* Animated Border Effect */
.lyari-popup::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 12px;
  z-index: -1;
  background: linear-gradient(
    45deg,
    #09f8cd,
    transparent,
    #09f8cd
  );
  animation: border-glow 4s linear infinite;
  background-size: 400% 400%;
}

@keyframes border-glow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}





