.delpage {
  margin-top: -130px;
  padding-top: 200px;
  padding-bottom: 100px;
  border-radius: 0 0 80px 80px;
  position: relative;
  z-index: 100;
  background-color: #fffaf3;
}
.delpage__title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 900px;
}
.delpage__lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin-bottom: 40px;
}
.delpage__grid {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.delpage__col-form {
  flex: 1 1 560px;
  min-width: 0;
}
.delpage__col-info {
  flex: 0 1 460px;
  min-width: 0;
}

.delform {
  border: 3px solid #000;
  border-radius: 40px;
  padding: 40px;
  background-color: #fff;
}
.delform__row {
  margin-bottom: 25px;
}
.delform__label {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.delform__req {
  color: #fe5e3a;
}
.delform__hint {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 6px;
  color: #4a4a4a;
}
.delform__input {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #000;
  background-color: #fffaf3;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.delform__input::placeholder {
  color: #9a9a9a;
  font-weight: 400;
}
.delform__input:focus {
  outline: none;
  border-color: #3c2bff;
  box-shadow: 0 0 0 3px rgba(60, 43, 255, 0.15);
}
.delform__input--error {
  border-color: #fe5e3a;
  box-shadow: 0 0 0 3px rgba(254, 94, 58, 0.15);
}
.delform__error {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: #d63a17;
  margin-top: 6px;
}
.delform__error.is-visible {
  display: block;
}
.delform__check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
  -webkit-user-select: none;
  user-select: none;
}
.delform__check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.delform__box {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border: 2px solid #000;
  border-radius: 8px;
  background-color: #fff;
  position: relative;
  transition: background-color 0.2s;
}
.delform__box::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s;
}
.delform__check input:checked + .delform__box {
  background-color: #3c2bff;
  border-color: #3c2bff;
}
.delform__check input:checked + .delform__box::after {
  transform: rotate(45deg) scale(1);
}
.delform__check input:focus-visible + .delform__box {
  box-shadow: 0 0 0 3px rgba(60, 43, 255, 0.25);
}
.delform__submit {
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}
.delform__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.delform__hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.delnote {
  border: 3px solid #000;
  border-radius: 40px;
  padding: 35px 40px;
  margin-bottom: 25px;
}
.delnote--accent {
  background-color: #000;
  color: #fff;
}
.delnote--accent a {
  color: #ffc121;
}
.delnote__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
.delnote__list {
  padding-left: 20px;
  margin: 0;
}
.delnote__list li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  list-style: disc;
}
.delnote__text {
  font-size: 16px;
  line-height: 1.6;
}

.delresult {
  display: none;
  border: 3px solid #000;
  border-radius: 40px;
  padding: 40px;
  background-color: #fff;
}
.delresult.is-visible {
  display: block;
}
.delresult__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}
.delresult__text {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.delresult__id {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  background-color: #fffaf3;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 10px 15px;
  word-break: break-all;
}

@media (max-width: 1100px) {
  .delpage {
    padding-top: 150px;
  }
  .delpage__grid {
    flex-direction: column;
  }
  .delpage__col-form, .delpage__col-info {
    flex: 1 1 auto;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .delpage__title {
    font-size: 30px;
  }
  .delform,
  .delresult {
    padding: 25px 20px;
    border-radius: 25px;
  }
  .delnote {
    padding: 25px 20px;
    border-radius: 25px;
  }
}
@media (max-width: 550px) {
  .delpage {
    border-radius: 0 0 40px 40px;
  }
}
