.registrar__hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.registrar__hero-content {
  position: absolute;
  z-index: 20;
  width: 80%;
  top: 45%;
  left: 15px;
}
@media (min-width: 1000px) {
  .registrar__hero-content {
    top: 50%;
    width: 520px;
    left: 50%;
    transform: translateX(-485px);
  }
}
.registrar__hero-title {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  position: relative;
  margin-bottom: 25px;
}
@media (min-width: 1000px) {
  .registrar__hero-title {
    font-size: 55px;
  }
}
@media (min-width: 1000px) {
  .registrar__hero-title:after {
    bottom: -30px;
  }
}
.registrar__hero-mouse {
  position: absolute;
  width: 30px;
  height: 50px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
  bottom: 50px;
  left: calc(50% - 15px);
  transition: all 0.3s ease;
}
.registrar__hero-mouse:hover {
  border: 2px solid rgb(255, 255, 255);
}
.registrar__hero-mouse:after {
  content: "";
  height: 4px;
  width: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  left: calc(50% - 2px);
  position: absolute;
  top: 10px;
  animation: fade 2s ease infinite;
}
.registrar__hero-next-section {
  position: absolute;
  bottom: 0;
  left: calc(50% - 50px);
  z-index: 10;
  width: 100px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23eaeaea' viewBox='0 0 100 20'%3E%3Cpath d='m50,0C34.5,0,14.5,17.5,0,20h100C85.5,17.5,65.5,0,50,0Z'/%3E%3C/svg%3E");
}
.registrar__hero-next-section:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #878787;
  border-right: 2px solid #878787;
  transform: rotate(135deg);
  position: absolute;
  left: 47px;
  bottom: 5px;
}
.registrar__form-section {
  padding-block: 60px;
  background: #eaeaea;
  padding-inline: 15px;
}
@media (min-width: 700px) {
  .registrar__form-section {
    position: relative;
    padding-block: 120px;
    padding-inline: 0;
  }
}
.registrar__container {
  max-width: 970px;
  margin-inline: auto;
}
.registrar__heading {
  max-width: 805px;
}
.registrar__form {
  width: 100%;
  display: flex;
  gap: 90px;
  display: none;
}
.registrar__form .form {
  flex-grow: 2;
}
.registrar__form.js-active {
  display: flex;
}
.registrar__form-step {
  width: 100%;
  max-width: 520px;
}
.registrar__form-step-title {
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 18px;
}
.registrar__counter {
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 18px;
}
.registrar__title {
  font-size: 32px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 30px;
  letter-spacing: -0.8px;
  color: #055881;
  font-weight: 700;
}
.registrar__title:after {
  bottom: -15px;
}
@media (min-width: 700px) {
  .registrar__title {
    font-size: 56px;
  }
}
.registrar__pass-disclaimer {
  font-size: 12px;
  display: block;
  margin-top: 10px;
}
.registrar__thanks {
  color: #4DA234;
  font-weight: 700;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  max-width: 520px;
  line-height: 1.5;
  margin-bottom: 50px;
}