/* na ng */
.santa-button-reg {
  position: relative;
  padding-top: 50px;
}
.santa-button-login {
  position: relative;
}

.santa-hat-reg {
  position: absolute;
  top: -10px;
  left: 2%;
  transform: translateX(-50%);
  width: 44px;
  height: auto;
  animation: bounce 2s infinite ease-in-out;
}
.santa-hat-login {
    position: absolute;
    top: -3px;
    left: 2%;
    transform: translateX(-50%);
    width: 38px;
    height: auto;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
/* na ng end */
body {
    background-color: #0f1014;
}