.app-loading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 10em;
}

.loader-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; /* O cualquier tamaño del contenedor */
}

.app-loading-icon {
  background: url('../images/logo-aplica.png') no-repeat center center;
  background-size: contain;
  width: 50vh;
  height: 20vh;
}

.loader {
  border: 5px solid #f3f3f3; /* Light grey */
  border-top: 5px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
}

button > .loader {
  display: inline-block;
  position: absolute;
  margin-top: 3px;
  margin-left: -4px;
  background-color: #58e6c3;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

