.campaign-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}
.campaign-form--screen {
  position: relative;
  width: 360px;
  max-width: 100%;
  height: 505px;
  margin: -10vh auto 32px;
}
.campaign-form--screen--frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
}
.campaign-form--screen--background {
  position: absolute;
  top: 17px;
  left: 18px;
  width: 92%;
  height: 94%;
  animation: marqueeScreen 280s infinite linear;
}
.campaign-form--screen--background--background-overlay {
  position: absolute;
  width: 96%;
  height: 96%;
  background: linear-gradient(104deg, #FFFFFF 25%, rgba(255, 255, 255, 0) 75%);
  top: 11px;
  left: 11px;
  border-radius: 10px;
  opacity: 0.6;
}
.campaign-form--screen--title {
  position: absolute;
  top: 40px;
  left: 40px;
  max-width: 90%;
  font-family: 'Rajdhani';
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #323132;
}
.campaign-form--screen--title--white {
  color: #ffffff;
}
.campaign-form--left--text {
  padding: 32px 0;
}
.campaign-form--form .hs-form-booleancheckbox label, .hs-form-radio-display label, .input--label, label.hs-form-checkbox-display, label.hs-form-radio-display  {
  color: #ffffff;
}
.campaign-form--form .btn.primary:not(.disabled):not([disabled]):not(.has-text-color), button.primary:not(.disabled):not([disabled]):not(.has-text-color), input.primary:not(.disabled):not([disabled]):not(.has-text-color)[type=button], input.primary:not(.disabled):not([disabled]):not(.has-text-color)[type=reset], input.primary:not(.disabled):not([disabled]):not(.has-text-color)[type=submit] {
  color: #134E5E;
}
.campaign-form--form .btn.primary, button.primary, input.primary[type=button], input.primary[type=reset], input.primary[type=submit] {
  background-color: #ffffff;
}
.campaign-form--form input.primary:not(.disabled):not([disabled]):hover[type=submit]:hover {
  background-color: #ccc;
}
.campaign-form--form input:not([type=submit]):not([type=button]):not([type=reset]):not([type=checkbox]):not([type=radio]) {
  background-color: #B6B0B9;
}
.campaign-form--form select {
  background-color: #B6B0B9;
}
.campaign-form--form input[type=checkbox] {
  background-color: #B6B0B9;
}
.campaign-form--form label:not(.hs-error-msg) {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  text-transform: initial;
}
.campaign-form--form label:not(.hs-error-msg) a {
  color: #ffffff;
}
.campaign-form--form .legal-consent-container a {
  color: #ffffff;
}
@media only screen and (min-width: 900px) {
  .campaign-form {
    flex-direction: row;
  }
  .campaign-form--screen {
    margin: -10vh 0 32px;
  }
  .campaign-form--left {
    width: 35%;
  }
  .campaign-form--left--text {
    width: calc(100% - 64px);
    max-width: 380px;
    padding: 32px 0;
  }
  .campaign-form--right {
    width: 60%;
  }
}

@keyframes marqueeScreen {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: -5110px;
  }
}