#form {
  position: relative;
}
#form h1 {
  font-size: 24px;
  font-weight: 700;
}
#form h1 span {
  color: #fff;
}
#form #counter {
  font-size: 11px;
}
#form #counter span {
  color: #fe6be3;
}
#form #privacy {
  font-size: 10px;
  max-width: 310px;
  margin: 0 auto;
  line-height: 1;
}
#form #privacy a {
  color: #fff;
  font-weight: bold;
}
#steps .step .question p {
  font-family: 'Courgette', cursive;
  font-size: 36px;
  transform: scale(1);
  transition: all 1s;
}
#steps .step .question p.scaler {
  animation: scaler 2s;
}
#steps .step .answer {
  display: inline-block;
  position: relative;
}
#steps .step .answer input {
  border: 1px solid #fff;
  background: #ffffff;
  color: #333;
  margin: 0 5px;
  font-size: 16px;
  border-radius: 3px;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
}
#steps .step .answer .item {
  display: inline-block;
  border: 1px solid #fff;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
  padding: 3px 0;
  width: 60px;
  margin: 0 5px;
  transition: all 0.4s;
}
#steps .step .answer .item.active {
  border: 1px solid #fe6be3;
  background: #fe6be3;
  color: #fff;
}
#steps .step .answer .item:hover {
  border: 1px solid #fe6be3;
  background: #fe6be3;
  color: #fff;
  opacity: 0.8;
}
#steps .step .answer .item.but {
  padding: 3px 15px;
  width: auto;
  width: initial;
}
#steps .step .answer .item.width-auto {
  width: auto;
  padding-left: 10px;
  padding-right: 10px;
}
#steps .step .answer .reg {
  display: inline-block;
  border: 1px solid #fff;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
  padding: 3px 15px;
  width: auto;
  width: initial;
  margin: 0 5px;
}
#steps .step .back {
  font-size: 12px;
  margin: 10px 0 5px;
  transition: all 0.4s;
}
#steps .step .back span {
  cursor: pointer;
  text-decoration: underline;
}
#steps .step .back:hover {
  opacity: 0.8;
}
#steps .step .back__empty {
  text-decoration: none;
  height: 17px;
}
#form h1 span {
  color: white;
  animation-name: blink;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes blink {
  0% {
    color: white;
  }
  50% {
    color: #fe6be3;
  }
}
@keyframes scaler {
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}
@keyframes shake {
  10%,
  90% {
    transform: rotate(-1deg);
  }
  20%,
  80% {
    transform: rotate(1deg);
  }
  30%,
  50%,
  70% {
    transform: rotate(-1deg);
  }
  40%,
  60% {
    transform: rotate(1deg);
  }
}
