.form_box {
    background: #2196f3;
    padding-top: 60px;
    padding-bottom: 60px;
}

.news_inner {
    padding-top: 30px;
    padding-bottom: 50px;
}

.form_box .title_h2 {
    color: #fff;
}

.form_box form {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    width: 66%;
    margin-left: 17%;
    margin-top: 2rem;
}

input {
    outline: none;
    padding-left: 10px;
    border: 1px solid #DEDEDE;
}

.form_box form .input {
    width: 48%;
    border-radius: 5px;
    background: #fff;
    height: 54px;
    line-height: 54px;
    color: #555;
    font-size: 16px;
    margin-bottom: 25px;
}

textarea {
    outline: none;
    resize: none;
    padding: 5px 0 0 10px;
    border-color: #DEDEDE;
}

.textarea {
    width: 100%;
    height: 120px;
    border-radius: 5px;
}

button {
    border: none;
    background-color: transparent;
    outline: none;
}

.order_btn {
    background: #fff;
    width: 60%;
    display: block;
    margin: 10px auto;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #2196f3;
    font-size: 16px;
    border-radius: 50px;
    margin-top: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order_btn:hover {
    background: #0d8bf2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width:992px) {
    .form_box form {
        width: 80%;
        margin-left: 10%;
    }

    .form_box form .input {
        width: 100%;
    }
}

@media (max-width:768px) {
    .form_box form {
        width: 90%;
        margin-left: 5%;
    }

    .order_btn {
        width: 80%;
    }
}