.background {
  background-image: url("../img/pxo_login_gradient.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.responsive-div {
  width: 100%;
  max-width: 456px;
  box-sizing: border-box;
  margin-inline: auto;
}

/* Mobile */
@media (max-width: 600px) {
  .responsive-div {
    width: 70%;
  }
}

.fade-in-bottom {
  opacity: 0;
  transform: translateY(20px); /* start slightly to the left */
  animation: fadeInBottom 0.5s ease-out forwards;
}

@keyframes fadeInBottom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top-left-btn {
  position: fixed;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  top: 0;
  left: 0;
  margin: 8px;
  z-index: 1000;
}

.feedback-container {
  width: 100%;
  max-width: 388px;
}

/* Mobile */
@media (max-width: 600px) {
  .feedback-container {
    width: 94%;
  }
}

.register-user-profile-avatar {
  width: 128px;
  height: 128px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.register-user-profile-avatar:hover .sny-hidden {
  display: block;
}

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