.floating-login-btn {
  position: fixed;
  bottom: 120px;
  right: 53px;
  width: 60px;
  height: 60px;
  background-color: #d50032;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background 0.3s, transform 0.3s;
}

.floating-login-btn:hover {
  background-color: #a00025;
  transform: scale(1.1);
}


@media (max-width: 400px) {
  .floating-login-btn {
    bottom: 70px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}


@media (max-width: 600px) {
  .floating-login-btn {
    bottom: 80px;     /* lift button a bit */
    right: 20px;      /* keep spacing from right */
    width: 50px;      /* smaller size */
    height: 50px;
    font-size: 20px;  /* adjust icon/text size */
  }
}

