.gift {
  position: relative;
  background-color: var(--bs-black);
  z-index: 1;
  overflow: hidden;
}
.gift .container {
  position: relative;
  z-index: 1;
}
.gift-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.gift-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.gift__label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--bs-primary);
  font-family: "AtypText Bold", Arial, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 16px;
}
.gift__title {
  color: var(--bs-white);
  margin-bottom: 16px;
}
.gift__subtitle {
  color: var(--bs-white);
  font-size: 1.125rem;
  margin-bottom: 40px;
}
.gift__form {
  width: 100%;
  max-width: 412px;
}
@media (max-width: 767.98px) {
  .gift__form {
    margin: 0 auto;
  }
}
.gift__form .form-control {
  border-color: var(--bs-primary);
  background-color: var(--primary-bg);
  color: var(--bs-white);
}
.gift__form .form-label {
  color: var(--bs-white);
}
.gift__form-agreement {
  color: var(--bs-white);
  font-size: 0.875rem;
}
.gift__form-agreement a {
  color: var(--bs-white);
}
.gift__form-agreement a:hover {
  text-decoration: underline;
}
.gift__image {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 100%;
  height: auto;
  aspect-ratio: 929/504;
  pointer-events: none;
  z-index: -1;
}
.gift__image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .gift__image {
    position: relative;
    bottom: unset;
    right: 0;
    margin-top: -20px;
  }
  .gift__image img {
    position: relative;
    width: 130%;
    height: 130%;
    left: -30%;
  }
}
