.sc-wrapper {
  position: relative;
  width: 288px;
  height: 80px;
  margin: 0 auto;
  text-align: center;

  font-family: helvetica, sans-serif;
  color: white;
}
.sc-wrapper .button {
  width: 100%;
  height: 64px;
  background-color: #d83939;
  border-radius: 3px;
  position: absolute;
  transition: 0.5s all ease;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.sc-wrapper .button form {
  width: 100%;
  z-index: 100;
}

/* .sc-wrapper .button p, */

.sc-wrapper .button form button {
  margin: 0 auto;
  font-weight: 800;
  font-size: 18px;
  background: none;
  border: none;
  color: white;
}
.sc-wrapper .logo {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-wrapper .logo svg {
  width: auto;
  height: 32px;
  position: absolute;
}
.sc-wrapper .logo-bg {
  width: 80px;
  height: 64px;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s all ease;
  background-color: #d83939;
  mix-blend-mode: multiply;
}
.sc-wrapper .light {
  fill: #ffffff;
}
@keyframes move {
  0% {
    transform: translate(-16px, -8px);
    opacity: 0;
  }
  2% {
    opacity: 0;
  }
  19% {
    transform: translate(8px, 4px);
    opacity: 1;
  }
  27% {
    transform: translate(0px, 0px);
  }
  73% {
    transform: translate(0px, 0px);
  }
  81% {
    transform: translate(-8px, -4px);
  }
  92% {
    opacity: 1;
  }
  100% {
    transform: translate(16px, 8px);
    opacity: 0;
  }
}
.sc-wrapper .container {
  position: relative;
  width: 288px;
  height: 64px;
  /*margin: 24px auto 8px;*/
  cursor: pointer;
}
.sc-wrapper .container:hover .logo-bg {
  width: 100%;
}
.sc-wrapper .container:hover .logo svg {
  animation: move 2s ease-in-out infinite;
}
.sc-wrapper a {
  color: #404850;
  opacity: 0.35;
  text-align: center;
  width: 100%;
  font-size: 12px;
  transition: 0.25s all ease;
  display: inline;
}
.sc-wrapper a:hover {
  opacity: 1;
}
