

#authSMSModal .modal_btn ul {
  list-style: none;
}
#authSMSModal .modal_btn ul li {
  /* border: 1px solid lightgray;
  border-radius: 5px; */
  width: 80px;
}


.loadingScreen {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(100, 100, 100, 0.5);
  backdrop-filter: blur(2px);
  z-index: 999;
}

.loadingScreen.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loadingScreen .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loadingScreen .inner i {
  font-size: 5rem;
  font-weight: bold;
  color: white;
}