@charset "utf-8";

.pulse-register-btn { display: inline-block; padding: 16px 34px; background: rgb(33, 100, 225); font-size: 18px; font-weight: 700; border-radius: 50px; text-align: center; box-shadow: rgba(0, 230, 222, 0.7) 0px 0px 0px; animation: 1.5s ease 0s infinite normal none running pulseBtn; transition: 0.3s; width: 100%; color: rgb(255, 255, 255) !important; text-decoration: none !important; }

.pulse-register-btn:hover { background: rgb(0, 64, 201); transform: translateY(-2px); }

@keyframes pulseBtn { 
  0% { box-shadow: rgba(0, 142, 230, 0.7) 0px 0px 0px 0px; }
  70% { box-shadow: rgba(230, 0, 35, 0) 0px 0px 0px 16px; }
  100% { box-shadow: rgba(230, 0, 35, 0) 0px 0px 0px 0px; }
}
