.special-order-page {
  background: var(--cream);
}

.special-order-main {
  position: relative;
  min-height: 1494px;
  overflow: hidden;
  background: rgb(255 204 211 / 50%);
}

.special-order-main > h1 {
  margin: 0;
  padding-top: 59px;
  color: var(--red);
  font-size: 45px;
  text-align: center;
}

.agreement-card {
  position: absolute;
  top: 313px;
  right: 0;
  left: 0;
  width: 851px;
  height: 316px;
  margin: 0 auto;
  padding: 0;
  border: 1px solid #757575;
  border-radius: 10px;
  background: var(--cream);
  box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
}

.agreement-card h2 {
  margin: 17px 0 0;
  color: #e284a6;
  font-family: "Nunito", sans-serif;
  font-size: 25px;
  font-weight: 900;
  text-align: center;
}

.agreement-copy {
  position: absolute;
  top: 69px;
  left: 22px;
  width: 804px;
  height: 195px;
}

.agreement-copy > img {
  position: absolute;
  top: 0;
  left: -4px;
  width: 812px;
  height: 195px;
}

.agreement-copy p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 19px 17px;
  font-family: "Nunito", sans-serif;
  font-size: 25px;
  line-height: 1.35;
}

.agreement-check {
  position: absolute;
  bottom: 12px;
  left: 30px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  cursor: pointer;
}

.agreement-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.agreement-checkbox {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  margin-top: -4px;
}

.agreement-checkbox img {
  display: block;
  width: 26px;
  height: 26px;
}

.agreement-check input:checked + .agreement-checkbox::after {
  position: absolute;
  top: 0;
  left: 8px;
  color: var(--red);
  content: "✓";
  font-size: 16px;
  font-weight: 700;
}

.agreement-check input:focus-visible + .agreement-checkbox {
  border-radius: 3px;
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

@media (max-width: 960px) {
  .special-order-main {
    min-height: 1120px;
  }

  .agreement-card {
    top: 255px;
    width: calc(100% - 64px);
    max-width: 851px;
    height: auto;
    min-height: 316px;
    padding: 0 22px 26px;
  }

  .agreement-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 195px;
    margin-top: 16px;
    padding: 19px 17px;
    border: 1px solid #757575;
    border-radius: 10px;
    background: var(--cream);
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
  }

  .agreement-copy > img {
    display: none;
  }

  .agreement-copy p {
    padding: 0;
  }

  .agreement-check {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 18px;
  }
}

@media (max-width: 560px) {
  .special-order-main {
    min-height: 900px;
  }

  .special-order-main > h1 {
    padding-top: 48px;
    font-size: 36px;
  }

  .agreement-card {
    top: 190px;
    width: calc(100% - 32px);
  }

  .agreement-card h2 {
    font-size: 23px;
  }

  .agreement-copy p {
    font-size: 19px;
  }

  .agreement-check {
    font-size: 15px;
  }
}
