.login-wall-backdrop {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 99999;
  display: block;
  backdrop-filter: blur(3px);
  animation: fadeIn 0.3s;
  animation-fill-mode: forwards;
  animation-delay: 0s;
  animation-timing-function: ease-in-out;
  animation-direction: forward;
  cursor: pointer;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.login-wall-modal {
  position: fixed;
  bottom: 0px;
  left: 0px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px;
  z-index: 9999;
  height: 65vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: fadeInModal 0.7s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
  animation-timing-function: ease-in-out;
  animation-direction: forward;
  transform: translateY(100%);
}
@keyframes fadeInModal {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.login-wall-modal__title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 8px;
  text-align: center;
  user-select: none;
}

@media screen and (max-width: 500px) {
  .login-wall-modal__title {
    font-size: 30px;
  }
}
.login-wall-modal__subtitle {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 20px;
  user-select: none;
}

.login-wall-modal__button {
  padding-inline: 50px;
  margin-top: 40px;
}

.login-wall-modal__register-button-wrapper {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  user-select: none;
}

.login-wall-modal__register-button-wrapper a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
