#emailBaner {
  margin-top: 24px;
  background: #f0f0f0;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(12, 12, 13, 0.05);
  padding: 24px;
  gap: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#emailBaner .background {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  width: 278px;
  height: 265px;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  background-image: linear-gradient(
    to right top,
    #49ff86,
    #41ffa7,
    #4affc3,
    #62ffd9,
    #80ffea
  );
  animation: blobAnim 10s ease-in-out infinite;
  opacity: 0.7;
  z-index: 0;
}
@keyframes blobAnim {
  0%,
  to {
    border-radius: 46% 54% 29% 71%/66% 39% 61% 34%;
    transform: translate(-50%, -50%) rotate(30deg);
  }
  30% {
    border-radius: 46% 54% 29% 71%/17% 74% 26% 83%;
    transform: translate(-50%, -50%) rotate(15deg);
  }
  50% {
    border-radius: 46% 54% 81% 19%/39% 74% 26% 61%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  70% {
    border-radius: 65% 35% 56% 44%/39% 17% 83% 61%;
    transform: translate(-50%, -50%) rotate(70deg);
  }
}
#emailBaner .bottom_bonus-text {
  flex: 1 1;
  z-index: 1;
}
#emailBaner .bottom_bonus-text p {
  margin: 0;
  color: #07130c;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.045em;
  font-weight: 400;
}
#emailBaner .bottom_bonus-text p b {
  display: inline-block;
}
#emailBaner .bottom_bonus-img {
  z-index: 1;
  margin-right: 8px;
}
#emailBaner.email-revieve .background {
  left: 30%;
}
#emailBaner.email-revieve .bottom_bonus-text p {
  margin-bottom: 12px;
}
#emailBaner.email-revieve .bottom_bonus-text .bottom_bonuse-input {
  display: flex;
  gap: 8px;
}
#emailBaner.email-revieve .bottom_bonus-text .bottom_bonuse-input input {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  color: #4d544f;
  border-radius: 8px;
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
}
#emailBaner.email-revieve .bottom_bonus-text .bottom_bonuse-input button.btn {
  margin: 0;
  width: auto;
}
@media screen and (max-width: 600px) {
  #emailBaner.email-revieve .bottom_bonus-text p {
    max-width: 220px;
  }
  #emailBaner.email-revieve .bottom_bonus-text p b {
    display: inline;
  }
  #emailBaner.email-revieve .bottom_bonuse-input {
    flex-direction: column;
  }
  #emailBaner.email-revieve .bottom_bonuse-input button {
    justify-content: center;
  }
}
