 /*                                                                         
| -------------------------------------------------------------------------- |
| CUSTOM ORDER FORM                                                          |
| -------------------------------------------------------------------------- |
| */                                                                         

.sco-form-section {
    background: #E2E5F5;
    padding: 60px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.sco-custom-order-wrapper {
max-width: 700px;
margin: 0 auto;
padding: 40px;
border-radius: 15px;
}

/* Heading */
.sco-custom-order-wrapper h2 {
color: #614184;
font-size: 32px;
font-weight: 700;
margin-bottom: 20px;
}

/* Description */
.sco-form-description {
color: #555;
line-height: 1.8;
margin-bottom: 30px;
}

/* Labels */
.sco-custom-order-wrapper label {
color: #614184;
font-weight: 600;
display: block;
margin-bottom: 8px;
}

/* Inputs */
.sco-custom-order-wrapper input {
width: 75%;
max-width: 500px;
background: #fff;
border: 1px solid #d7d9ea;
border-radius: 30px;
padding: 14px 20px;
box-sizing: border-box;
}

/* Textarea */
.sco-custom-order-wrapper textarea {
width: 100%;
background: #fff;
border: 1px solid #d7d9ea;
border-radius: 20px;
padding: 15px 20px;
min-height: 180px;
box-sizing: border-box;
}

/* Button */
/* Submit Button Fix */
/* Submit Button */
/* Submit Button */
.sco-submit-btn {
    background: #614184 !important;
    color: #ffffff !important;
    border: none !important;

    width: 260px;
    height: 60px;

    border-radius: 40px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    margin-top: 20px;
    margin-left: 20px;

    padding: 0;
    line-height: 1;
}

/* Mobile */
@media (max-width: 768px) {

    .sco-submit-btn {
        width: 220px;
        height: 55px;

        margin-top: 20px;
        margin-left: 0;
        border-radius: 40px !important;
    }

}
/* Success Box */
.sco-success-message {
background: #fff;
border-left: 4px solid #614184;
padding: 25px;
border-radius: 10px;
}
