.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;
}

.app-loading img.loading-image {
  width: 100px; /* ajuste o tamanho conforme seu logo */
  height: 100px;
  animation: spin 2s linear infinite; /* animação de giro */
}

.app-loading p {
  margin-top: 1em;
  font-size: 1.2em;
  color: #555;
}

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