
.container {
  text-align: center;
 }

 /* img:nth-child(1) {
  padding-top: 150px;
 } */

.inicio {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



.inputs {
    padding: 10px;
}

body {
  background: #fefefe;
  font-family: "Roboto", sans-serif;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#downloadButton.cargando::after {
  content: "...";
  display: inline-block;
  margin-left: 5px;
}

#downloadButton.cargando {
  position: relative;
}

#downloadButton.cargando::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}





