.form {
  position: relative;
  width: 300px;
  box-shadow: rgba(255, 180, 0, 0.25) 0px 7px 29px 0px;
  padding: 20px 20px;
  border-radius: 30px;
  background-color: #151515;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid grey;
}

.form__title {
  text-align: center;
  font-family: "ProximaNova", sans-serif;
  color: #ffb400;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
}

.form__heading {
  margin-top: 10px;
  font-family: "ProximaNova", sans-serif;
  text-align: center;
  color: #ffffff;
  font-weight: 300;
  opacity: 0.8;
  font-size: 14px;
  margin-bottom: 10px;
}

/* form inputs */

.form__inputs {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.input {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.input:not(:first-of-type) {
  margin-top: 15px;
}

.input__field {
  width: 100%;
  border-radius: 10px;
  border: 1px solid grey;
  padding: 25px 10px 5px 9px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  background-color: #fffef8;
  color: #000000;
}

.input__field:focus {
  border: 1px solid grey;
}

.input__label {
  position: absolute;
  pointer-events: none;
  left: 11px;
  top: 18px;
  transition: 0.2s ease all;
  font-size: 15px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #c0c0c0;
}

.input__field:focus ~ .input__label {
  top: 6px;
  font-size: 11px;
}

/* form checkbox */
.checkbox {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 25px;
  padding: 0 10px;
  cursor: pointer;
  gap: 25px;
  justify-content: space-between;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.checkbox__field {
  height: 25px;
  width: 25px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.checkbox__label {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 15px;
  line-height: 20px;
  width: 190px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  color: #ffffff;
}

/* form fomo */

#formFomo {
  display: none;
}

.form__fomo {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  /* animation: blinking 1.4s infinite; */
}

.form__icon {
  width: 25px;
  height: auto;
}

.form__cta {
  font-size: 20px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  margin-left: 10px;
  color: orangered;
}

@keyframes blinking {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* form button */

.form__button {
  text-align: center;
  margin-top: 16px;
  width: 100%;
  padding: 14px 50px;
  border-radius: 30px;
  border: none;
  font-size: 1.3rem;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  background: #ffb400;
  color: #000000;
  font-weight: 900;
  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 1200px) {
  .form {
    width: 390px;
  }
}
video {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  border-radius: 20px;
}
.promoWrapper {
  position: relative;
}
#promoWrapper {
  background: rgba(255, 255, 255, 0.15);
}
