* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-size: cover;
    margin: 0;
    overflow: hidden;
}

.container-form {
  display: flex;
  border-radius: 20px;
  box-shadow: 0 5px 7px rgba(0, 0, 0, .1);
  height: 500px;
  max-width: 900px;
  transition: all 1s ease;
  margin: 10px;
}

.information {
  width: 40%;
  display: flex;
  align-items: center;
  text-align: center;
  background-color: #c7eef3;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.info-childs {
  width: 100%;
  padding: 0 30px;
}

.info-childs h2 {
  font-size: 2.5rem;
  color: #333;
}

.info-childs p {
  margin: 15px 0 ;
  color: #555;
}

.info-childs input {
  box-shadow: 1px 1px 19px black;
  background-color: #03A9F4;
  outline: none;
  border: solid 2px #9191bd00;
  border-radius: 20px;
  padding: 10px 20px;
  color: #ffffff;
  cursor: pointer;
  transition: background-color .3s ease;
}

.info-childs input:hover {
  background-color: #2196F3;
  border: none;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.form-information {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  text-align: center;
  background-color: #f8f8f8;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.form-information-childs {
  padding: 0 30px;
}

.form-information-childs h2 {
  color: #333;
  font-size: 2rem;
}

.form-information-childs p {
  color: #555;
}

.icons {
  margin: 15px 0;
}

.icons i {
  border-radius: 50%;
  padding: 15px;
  cursor: pointer;
  margin: 0 10px;
  color: #9191bd;
  border: solid thin #9191bd;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.icons i:hover {
  background-color: #c7c7f3;
  color: #fff;
}

.form {
  margin: 30px 0 0 0;
}

.form label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 20px;
  padding: 0 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.form label input {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: none;
  outline: none;
  border-radius: 20px;
  color: #333;
}

.form label i {
  color: #a7a7a7;
}

.form input[type="submit"] {
  background-color: #3ccbff;
  color: #fff;
  border-radius: 20px;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.form input[type="submit"]:hover {
  background-color: #1042eb;
}

.hide {
  position: absolute;
  transform: translateY(-300%);
}

/*PERSONALIZACION DE MIS ALERTAS Y MENSAJES */
.form div .alerta {
  width: 290px;
  text-align: left;
  border-radius: 7px;
  margin-bottom: 10px;
  font-size: .8rem;
}

.form > .alerta-error,
.form > .alerta-exito {
  display: none;
}

.form .alertaError {
  display: block;
  background-color: #F66060;
  padding: .5rem 1rem;
  margin-top: 10px;
  font-weight: 500;
  font-size: .8rem;
}

.form .alertaExito {
  display: block;
  background-color: #0ca828;
  padding: .5rem 1rem;
  margin-top: 10px;
  font-weight: 500;
  font-size: .8rem;
}

.form .error {
  outline: solid 2px #9d2222;
}

/*RESPONSIVE FORM*/

@media screen and (max-width:750px) {
  html {
    font-size: 12px;
  }
}

@media screen and (max-width:580px) {
  html {
    font-size: 15px;
  }

  .container-form {
    height: auto;
    flex-direction: column;
  }

  .information {
    width: 100%;
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0;
  }

  .form-information {
    width: 100%;
    padding: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 0;
  }
}

.wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.round {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #01b4f9;
  border: 5px solid #01b4f9;
  opacity: 0;
  box-shadow: 0 0 100px #01b4f9, 0 0 10px #01b4f9, 0 0 20px #01b4f9;
  animation: animate 4s linear infinite, ani-2 2s linear infinite;
}

.round:nth-child(1) {
  left: 5%;
  animation-delay: 0.5s;
}

.round:nth-child(2) {
  left: 65%;
  animation-delay: 1s;
}

.round:nth-child(3) {
  left: 90%;
  animation-delay: 1.5s;
}

.round:nth-child(4) {
  left: 18%;
  animation-delay: 2s;
}

.round:nth-child(5) {
  left: 93%;
  animation-delay: 2.5s;
}

.round:nth-child(6) {
  left: 52%;
  animation-delay: 3s;
}

.round:nth-child(7) {
  left: 65%;
  animation-delay: 3.5s;
}

.round:nth-child(8) {
  left: 35%;
  animation-delay: 4s;
}

.round:nth-child(9) {
  left: 85%;
  animation-delay: 4.5s;
}

.round:nth-child(10) {
  left: 45%;
  animation-delay: 5s;
}

.round:nth-child(11) {
  left: 36%;
  animation-delay: 5.5s;
}

.round:nth-child(12) {
  left: 72%;
  animation-delay: 6s;
}

.round:nth-child(13) {
  left: 14%;
  animation-delay: 6.5s;
}

.round:nth-child(14) {
  left: 70%;
  animation-delay: 7s;
}

@keyframes animate {
  0% {
    top: 0;
    opacity: 1;
  }

  20% {
    top: 20%;
    opacity: 0.8;
  }

  40% {
    top: 40%;
    opacity: 0.6;
  }

  60% {
    top: 60%;
    opacity: 0.4;
  }

  80% {
    top: 80%;
    opacity: 0.2;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes ani-2 {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(2.5);
  }
}