/* Fullscreen particle background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1a1a2e;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 1;
  }
  
  /* Glowing form effect */
  .form-glow {
    position: relative;
    z-index: 10;
    background:transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(81, 224, 255, 0.4), 0 0 40px rgba(81, 224, 255, 0.2);
  }
  
  /* Input animation */
  @keyframes inputFocus {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .input-animate:focus {
    animation: inputFocus 0.5s ease;
    box-shadow: 0 0 15px rgba(81, 224, 255, 0.6);
    border-color: rgba(81, 224, 255, 0.8);
  }
  
  /* Button pulse effect */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .btn-pulse:hover {
    animation: pulse 1s infinite;
  }
  