
.user-login-5 .login-container>.login-content>.login-form .rem-password {
    margin-top: 0px !important;
}

#login-actions {
	margin-bottom: 40px;
}




/* Container for sparkle positioning */
.sparkle-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* Shine effect (a sweeping light) */
.shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shine-move 3s infinite;
}

@keyframes shine-move {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* Glow & light sparkle animation */
.shining-logo {
  animation: glow 2s infinite ease-in-out;
  transition: transform 0.3s ease;
}

@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 3px white) drop-shadow(0 0 6px white);
  }
  50% {
    filter: drop-shadow(0 0 10px white) drop-shadow(0 0 20px white);
  }
}
