/* 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;
    font-weight: 600;
}

.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: #28b475;
    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);
    cursor: pointer;
    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 #28b475;
}

.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: 900px) {
    .book-container .book-box .form-box .col-wrapper {
        grid-template-columns: 1fr;
    }
    .book-container .book-box .form-box .col-wrapper .left-col {
        margin-bottom: 40px;
    }
    .book-container .book-box .form-box .col-wrapper .right-col {
        padding-left: 0;
    }
    .book-container .book-box .form-box .heading h1 {
        text-align: center;
    }
    .book-container .book-box .form-box .heading p {
        text-align: center;
    }
    .book-container .book-box .form-box .col-wrapper .left-col .btn-box {
        justify-content: center;
    }
}

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

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