@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@900&display=swap');

body{
  font-family: 'Nunito', sans-serif;
  background: linear-gradient( rgb( 0 0 0 / 0.5 ), rgb( 0 0 0 / 0.5 ) ) fixed  0 0 / cover, linear-gradient(48.17deg, hsl(214, calc(1 * 25%), 56%) 11.21%, hsl(214, calc(1 * 25%), 25%) 61.92%) fixed 0 0 / cover;
}
.modal {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  z-index: 4;
  transition-duration: 0.35s;
  backdrop-filter: blur(5px);
}

.lgmodal {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition-duration: 0.35s;
  backdrop-filter: blur(5px);
}
.login-back {  
  width: 382px;  
  overflow: hidden;
  margin: auto;
  padding: 20px;  
  background: #748CAB;  
  border-radius: 20px;
  text-align: center;
}
.login-back input {
  width: 300px;
  font-family: 'Nunito', sans-serif;
  color: #748CAB;
  background-color: #000000;
  border: none;
  border-radius: 15px;
  height: 30px;
  text-align: center;
}

.loginbtn {
  width: 200px;
  font-family: 'Nunito', sans-serif;
  color: #748CAB;
  background-color: #000000;
  border: none;
  border-radius: 15px;
  height: 30px;
}


#check-login {
  width: 145px;
  font-family: 'Nunito', sans-serif;
  color: #748CAB;
  background-color: #000000;
  border: none;
  border-radius: 15px;
  height: 30px;
}
.global-btn {
  width: 145px;
  font-family: 'Nunito', sans-serif;
  color: #748CAB;
  background-color: #000000;
  border: none;
  border-radius: 15px;
  height: 30px;
}

hr {
  border: 3px solid #000000;
  border-radius: 20px;
}

a {
  padding: 3px 9px 5px 9px;
  text-decoration: none;
  width: 100px;
  font-family: 'Nunito', sans-serif;
  color: #748CAB;
  background-color: #000000;
  border: none;
  border-radius: 15px;
  height: 30px;
}

.loadgin {
  --uib-size: 100%;
  --uib-color: black;
  --uib-speed: 2s;
  --uib-stroke: 5px;
  --uib-bg-opacity: .1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--uib-stroke);
  width: var(--uib-size);
  border-radius: calc(var(--uib-stroke) / 2);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.loadgin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--uib-color);
  opacity: var(--uib-bg-opacity);
  transition: background-color 0.3s ease;
}
.loadgin::after {
  content: '';
  height: 100%;
  width: 100%;
  border-radius: calc(var(--uib-stroke) / 2);
  animation: zoom var(--uib-speed) ease-in-out infinite;
  transform: translateX(-100%);
  background-color: var(--uib-color);
  transition: background-color 0.3s ease;
}
@keyframes zoom {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.none {
  display: none;
}

.tk-modal {
  width: 100%;
  height: 100vh;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  z-index: 999;
  transition-duration: 0.5s;
}
.tk-modal div {
  margin: auto;
  color: #fff;
  text-align: center;
}

.modal-visible {
  opacity: 1;
  pointer-events: auto;
}