.popUpOverlay {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.popUpOverlay.active{
  display: grid;
  place-items: center;
}

.authButtonsWrapper {
  padding: 110px 27px 27px 27px;
  background-color: #FFF8DF;
  border-radius: 20px;
  position: relative;
  text-align: center;
}

.authButtonsWrapper::after {
  content: '';
  display: block;
  width: 200px;
  height: 125px;
  background-image: url("res/Logo.72cd01ad.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-btn {
  width: 15px;
  height: 15px;
  background-image: url('res/closeBtn.dfd0503b.png') ;
  background-color: inherit;
  background-size: cover;
  background-repeat:  no-repeat;
  background-position: center center;
  cursor: pointer;
  border: 0;

  position: absolute;
  top: 15px;
  right: 15px;
  margin: 0;
}

.modalBox {
  width: 100%;
}

.line {
  width: 100%;
  height: 1.5px;
  background-image: url('res/line.532e5033.png');
  background-repeat:  no-repeat;
  background-position: center center;
  margin: 0 0 17px 0;
}

.modalLabel {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 12px;
  color: #A73E36;
  margin: 0 0 24px 0;
}

.modalText {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 22px;
  color: #A73E36;
  margin: 0 0 27px 0;
}

.modalText span {
  font-weight: 900;
  color: #E73737;
  margin: 0;
}

.authButtonsList {
  padding: 31.5px 26px;
  background-color: #FFEAC9;
  border-radius: 20px;
  display: grid;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
}

.authButton {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  display: none;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin: 0;
}

.authButton.active {
  display: flex;
}

@media(max-width: 420px) {
  .authButton {
    width: 100%;
    min-width: 202px;
    height: 44px;
    border-radius: 10px;
    display: none;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0;
  }
}
