.auth-popup__overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgb(25, 25, 25, .9);
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-popup {
  width: 100%;
  max-width: 46rem;
  background: #FFFFFF;
  border: 1px solid #F0F1F7;
  border-radius: 5px;
  padding: 3rem;
  margin: 0 auto;
  background-color: #fff;
  z-index: 12;
  left: 0;
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 100vh
}

.auth-popup__close-btn {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: transparent;
  border: none
}

.icon-close-popup {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #343434;
  transition: all 0.3s ease-in-out;
}

.icon-close-popup:hover {
  color: var(--accent-color);
}