.formbackcolor {
    background-image: linear-gradient(to right, #ce5234, #90331c);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
}
.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-bottom: 45px;
}
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.input-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.incon {
    width: 24%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
}

textarea.inputboxes {
    height: 45px;
}

.call-action-primary-btn {
    background-color: #fff;
    color: #90331c;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-sizing: border-box;
    margin-top: 10px;
    width: 10%;
}

.input-group {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.call-action-primary-btn:hover {
    background-color: rgb(160, 82, 45);
    color: white;
}
@media only screen and (max-width: 599.99px) {
    .heading {
        margin-bottom: 20px !important;
    }
}
@media only screen and (max-width: 600px) {
    .input-row {
        flex-direction: column;
        align-items: stretch;

    }

   .incon{
    width:97% !important;
   }

    textarea.inputboxes {
        width: 180%;
    }

    .input-group .call-action-primary-btn {
        width: 30%;
    }
}

@media only screen and (max-width: 400px) {
    .input-row {
        flex-direction: column;
        align-items: stretch;

    }

    .input-row .inputboxes {
        width: 110%;
    }

    textarea.inputboxes {
        width: 110%;
    }

    .input-group .call-action-primary-btn {
        font-size: 10px;
        width: 25%;
    }
}

@media only screen and (max-width: 240px) {
    .input-group .call-action-primary-btn {
        font-size: 10px;
        width: 30%;
    }
}
