/* book container  */
.book-container .book-box .form-box {
  position: relative;
  background-color: #eff4fa;
  padding: 40px;
  margin-top: -70px;
  z-index: 1;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
}

.book-container .book-box .form-box .heading h1 {
  color: #040a15;
}

.book-container .book-box .form-box .heading p {
  color: #61656a;
}

.book-container .book-box .form-box .col-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.book-container .book-box .form-box .col-wrapper .left-col .input-box {
  width: 100%;
  margin-bottom: 18px;
}

.book-container .book-box .form-box .col-wrapper .left-col .input-box input,
.book-container .book-box .form-box .col-wrapper .left-col .input-box textarea,
.book-container .book-box .form-box .col-wrapper .left-col .input-box select {
  font-family: "Inter", sans-serif;
  outline: none;
  border: none;
  padding: 16px;
  width: 100%;
  border-radius: 4px;
  border-bottom: 1px solid #c9d0dd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.book-container .book-box .form-box .col-wrapper .left-col .input-box textarea {
  min-height: 160px;
  max-width: 100%;
  min-width: 100%;
}

.book-container
  .book-box
  .form-box
  .col-wrapper
  .left-col
  .input-box
  input::placeholder {
  color: #61656a;
}

.book-container .book-box .form-box .col-wrapper .left-col .btn-box button {
  border: none;
  outline: none;
  padding: 16px 30px;
  background-color: #1f4380;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 14px;
  box-shadow: 0px 8px 30px rgba(201, 202, 204, 0.5);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.book-container .book-box .form-box .col-wrapper .right-col .list {
  padding: 20px 0 20px 20px;
  border-left: 6px solid #f68620;
}

.book-container .book-box .form-box .col-wrapper .right-col .list h2 {
  text-transform: uppercase;
  color: #61656a;
  font-size: 16px;
  font-weight: 600;
}

.book-container .book-box .form-box .col-wrapper .right-col .list h1 {
  color: #1f4380;
  font-size: 26px;
  font-weight: 600;
  word-break: break-all;
}

/* responsive  */
@media (max-width: 1280px) {
  .book-container .book-box .form-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 850px) {
  .book-container .book-box .form-box .col-wrapper {
    grid-template-columns: 1fr;
  }
  .book-container .book-box .form-box .col-wrapper .left-col {
    margin-bottom: 30px;
  }
  .book-container .book-box .form-box .col-wrapper .right-col {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .book-container .book-box .form-box {
    padding: 30px;
  }
}

@media (max-width: 500px) {
  .book-container .book-box .form-box {
    padding: 20px;
  }
}
