* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans";
  font-size: 14px;
  background-size: 200% 100% !important;
  animation: move 5s ease infinite;
  transform: translate3d(0, 0, 0);
  background: linear-gradient(45deg, #51abe4 10%, #0764A2 90%);
  height: 100vh;
}

.user {
  margin: 10vh auto;
}

.circulito {
  animation: move 10s ease infinite;
  transform: translate3d(0, 0, 0);
  background: linear-gradient(45deg, #249ae4 10%, #045c97 90%);
  width: 120rem;
  height: 120rem;
  border-radius: 50%;
  position: absolute;
  right: 370px;
  overflow: hidden;
  z-index: -1;
  top: 320px;
}

.circulitodoquenvezdefilleborde {
  background: transparent;
  width: 140rem;
  height: 140rem;
  border-radius: 50%;
  position: absolute;
  right: 530px;
  overflow: hidden;
  z-index: -1;
  top: 397px;
  border: #47A01A solid 15px;
}

.vainadeemmanuel {
  background-image: url(../../assets/azularreglado.svg);
  width: 100vw;
  display: flex;
  height: 80vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: -2;
  bottom: 0;
}

.user__header {
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 500px, 0);
  animation: arrive 500ms ease-in-out 0.7s forwards;
  margin-bottom: 40px;
}

.user__title {
  font-size: 14px;
  margin-bottom: -10px;
  font-weight: 500;
  color: white;
}

.form {
  margin-top: 40px;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 500px, 0);
  animation: arrive 500ms ease-in-out 0.9s forwards;
}

.form--no {
  animation: NO 1s ease-in-out;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.form__input {
  display: block;
  width: 100%;
  padding: 20px;
  font-family: "Open Sans";
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  transition: 0.3s;
}
.form__input:focus {
  background: #f7f7f7;
}

.btn {
  display: block;
  width: 100%;
  padding: 20px;
  font-family: "Open Sans";
  -webkit-appearance: none;
  outline: 0;
  border: 0;
  color: white;
  background: #ABA194;
  transition: 0.3s;
}
.btn:hover {
  background: #a09486;
}

@keyframes NO {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes arrive {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/*# sourceMappingURL=sass.css.map */
