.custom-auth-popup {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.32);
}

.custom-auth-popup__overlay {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0.74;
}

.custom-auth-popup__content {
  position: relative;
  z-index: 10;
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(60, 60, 60, .18);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  width: 450px;
}

.custom-auth-popup__content h1 {
  text-align: center;
}

#custom-auth-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#custom-auth-password {
  font-size: 1.1rem;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #bbb;
}

#custom-auth-form button {
  padding: 0.6rem;
  border-radius: 8px;
  background: #be2bbb;
  color: #fff;
  font-weight: bold;
  border: none;
  font-size: 1.05rem;
  cursor: pointer;
}
