Animated Gradient Button

Button_Icon
Button with Icon
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="description" content="Animated gradient button with a moving icon. Ideal for modern call-to-action designs.">
  <title>Animated Gradient Button</title>
  <style>
    body {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background-color: #f5f5f5;
      font-family: 'Arial', sans-serif;
    }
    .button {
      background: linear-gradient(45deg, #384d48, #ACAD94);
      padding: 15px 40px;
      color: #fff;
      font-size: 18px;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease-in-out;
    }
    .button:hover {
      background: linear-gradient(45deg, #8B8149, #D4D5D9);
    }
    .button::before {
      content: '➜';
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
      transition: all 0.3s ease;
    }
    .button:hover::before {
      left: 35px;
    }
  </style>
</head>
<body>
  <button class="button">Click Me</button>
</body>
</html>

About Design

A sleek, modern button with an animated gradient background and an icon that moves when hovered. This can be used for important call-to-action buttons.