.password-blur {
  filter: blur(5px); /* Apply blur effect to the password */
  transition: filter 0.3s ease; /* Smooth transition for blur effect */
}

.password-blur:hover {
  filter: none; /* Remove blur when the user hovers over the password */
}
