.ingresar__hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.ingresar__content {
  padding-bottom: 60px;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  z-index: 20;
  width: calc(100% - 30px);
  padding: 15px;
  top: 35%;
  left: 15px;
}
@media (min-width: 1200px) {
  .ingresar__content {
    width: 1030px;
    left: 50%;
    transform: translateX(-515px);
    padding: 40px;
  }
}
.ingresar__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) {
  .ingresar__title {
    font-size: 55px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1000px) {
  .ingresar__title:after {
    bottom: -30px;
  }
}
.ingresar__subtitle {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}
@media (min-width: 1000px) {
  .ingresar__subtitle {
    font-size: 18px;
  }
}
.ingresar__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;
}
.ingresar__hero-mouse:hover {
  border: 2px solid rgb(255, 255, 255);
}
.ingresar__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;
}
.ingresar__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");
}
.ingresar__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;
}
@media (min-width: 1000px) {
  .ingresar__form {
    display: grid;
    gap: 90px;
    grid-template-columns: 1fr 1fr;
  }
}
.ingresar__registro-text {
  color: #fff;
  line-height: 1.5;
  font-size: 18px;
  margin-bottom: 20px;
}
.ingresar__registro-text strong {
  display: block;
}
.ingresar__cta {
  display: inline-block;
  background: #055881;
  padding: 5px 20px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  text-decoration: none;
}
.ingresar__pass-recover {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  padding-block: 15px;
}
.ingresar__pass-recover .form__label {
  color: #fff;
}
.ingresar__pass-recover-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}