* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}
.popup {
  position: relative;
}

.popup__pre {
  width: 100vw;
  height: 100vh;
  /* background-color: red; */
  background-image: url(../IMG/PopUp1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  /* animation: gaby 20s infinite; */
  /* animation-direction: alternate-reverse; */
  animation: gaby 20s infinite alternate-reverse;
}
.popup__x {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 3px solid white;
  background-color: red;
  position: absolute;
  right: -15px;
  top: -15px;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}

.borrar {
  width: calc(20px + 1.5vw);
}
.registro {
  width: calc(1000px - 10vw);
  height: 45%;
  z-index: 100;
  display: flex;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid rgba(218, 233, 218, 0.951);
}
.popup__img {
  width: 40%;
  background-image: url(../IMG/PopUp2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  animation: gaby 20s infinite alternate-reverse;
}
.popup__textos {
  width: 60%;
  display: flex;
  padding: 7px;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: rgba(107, 203, 107, 0.849);
  overflow: auto;
}
.popup__aviso {
  font-size: 20px;
  font-weight: bold;
  overflow: auto;
}
.popup__aviso2 {
  font-size: 20px;
  font-weight: bold;
  overflow: auto;
}
.popup__cta {
  text-decoration: none;
  width: 150px;
  height: 40px;
  margin: 10px auto;
  background-color: white;
  padding: 2px 10px;
  font-size: 25px;
  color: red;
  border: 3px solid red;
  border-radius: 25px;
}

@keyframes gaby {
  from {
    background-position: left center;
  }
  to {
    background-position: right center;
  }
}

@media (max-width: 900px) {
  .registro {
    width: 90%;
    height: 60%;
    /* border: 15px solid rgb(25, 80, 219); */
  }
}

@media (max-width: 650px) {
  .registro {
    width: 90%;
    height: 80%;
    /* border: 15px solid rgb(25, 80, 219); */
  }
}
