/* LOGIN LANDING */

.landing-login {
  width: 375px;
  height: 583px; /* 430px; */
  background: #121722;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
}

.landing-login.hide {
  display: none;
}

.landing-login-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  right: 4px;
  top: 4px;
  box-sizing: border-box;
  padding: 12px;
  cursor: pointer;
}

.landing-login-title {
  font-family: Gotham_Pro_Medium;
  font-size: 1rem;
  padding: 14px 0;
}

.landing-login-details {
  margin: 15px 0 25px;
  font-family: Gotham_Pro_Regular;
  line-height: 1.25;
}

.landing-login-buttons {
  width: 100%;
  left: 0;
  bottom: var(--safe-area-inset-bottom);
  display: flex;
  position: absolute;
  flex-direction: column;
}

.landing-login-button {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 51px;
  font-family: Gotham_Pro_Medium;
  text-transform: uppercase;
  margin: 1px auto;
  box-sizing: border-box;
  padding-left: 67px;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  background-color: rgba(86, 92, 123, 0.34);
  /* color: rgba(0, 0, 0, 0.8); */
  color: rgb(174, 175, 180);
  /* border: 1px solid rgba(0, 0, 0, 0.1); */
  border-bottom: 1px solid #252525;
  background: linear-gradient(130deg, #121722, #121722,rgba(86, 92, 123, 0.34));
  /* background: linear-gradient(130deg, #a09e9eb8, #ebebebb8, #fff7f7b0); */
  background-size: 200% 200%;
  -webkit-animation: Animation 2s ease infinite;
  -moz-animation: Animation 2s ease infinite;
  animation: Animation 2s ease infinite;
}

.landing-login-button span.btntext.desc {
  display: inline-block;
  font-size: 11px;
  padding-left: 10px;
  margin-top: 5px;
  font-family: Gotham_Pro_Regular;
  /* color: rgba(0, 0, 0, 0.8); */
  color: rgb(174, 175, 180) !important;
}

@media screen and (max-width: 480px) {
  .landing-login {
    width: 100%;
    bottom: 54px;
    position: absolute;
  }
}

@-webkit-keyframes Animation {
  0% {
    background-position: 10% 0%;
  }
  50% {
    background-position: 91% 100%;
  }
  100% {
    background-position: 10% 0%;
  }
}
@-moz-keyframes Animation {
  0% {
    background-position: 10% 0%;
  }
  50% {
    background-position: 91% 100%;
  }
  100% {
    background-position: 10% 0%;
  }
}
@keyframes Animation {
  0% {
    background-position: 10% 0%;
  }
  50% {
    background-position: 91% 100%;
  }
  100% {
    background-position: 10% 0%;
  }
}
