.popup-form {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #00000066;
  z-index: 9999999;
  align-items: center;
  justify-content: center;
  display: none;
}

.popup-form.activePopp {
  display: flex;
}

.pupup-book-row {
  width: 480px;
  height: 600px;
}

.pupup-book-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.pupup-book-container {
  display: flex;
  position: relative;
  overflow: hidden;
}

.pupup-book-container > div:first-child {
  background-color: #ffffff;
}

.pupup-book-container > div:nth-child(2n) {
  background-color: #fffcf3;
}

.pupup-book-container > div:first-child > div {
  padding: 65px 0 65px 55px;
}

.book-form-box form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0 40px 0;
}

.book-form-box p {
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
  font-family: var(--font-family-main);
  color: var(--black);
}

.book-form-box form input {
  width: 400px;
  height: 56px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--dark-grey);
  padding: 17px 16px;
  color: var(--dark-grey);
  font-family: var(--font-family-mon);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  transition: all 0.5s ease;
}

.book-form-box form input::placeholder {
  color: var(--dark-grey);
  font-family: var(--font-family-mon);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}

.book-form-box form input:focus-visible {
  outline: none;
  border: none;
  border-bottom: 1px solid var(--tiffany);
}

.book-form-box button {
  background-color: var(--yellow);
  border: none;
  color: var(--black);
  font-family: var(--font-family-mon);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  width: 400px;
  height: 56px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-close {
  position: absolute;
  right: 40px;
  top: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 768px) {
  .pupup-book-container > div:nth-child(2n) {
    display: none;
  }

  .pupup-book-container > div:first-child > div {
    padding: 24px 32px;
  }

  .book-form-box form input,
  .book-form-box button {
    width: 350px;
  }

  .book-form-box p {
    font-size: 32px;
  }

  .pupup-book-row {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pupup-book-container {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  button.popup-close {
    right: 20px;
    top: 20px;
  }
}
