#zaptec-auth-client-root {
  background: #19312f;
}

.article-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #19312f;
  height: 100vh;
  margin: 0;
}

.section-main {
  display: flex;
  flex-direction: column;
}

.img-main {
  display: block;
  animation: bounce 1s infinite;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
