.left p {
    margin: 0px;
}
.iti {
    width: 100%;
}

/* Wrap all form-specific styles */
.quote-form {
/* optional */
}

/* Error text under each field */
.quote-form .field-error {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.4;
    color: #e63946; /* red */
}

/* Highlight invalid inputs / selects / textareas */
.quote-form .is-invalid {
    border-color: #e63946 !important;
    outline: 0;
    box-shadow: 0 0 0 0.15rem rgba(230, 57, 70, 0.25);
}

/* For checkbox error (agree) */
.quote-form .checkbox-group .field-error {
    margin-top: 6px;
}

/* Success + general error boxes if you want custom look on top of .alert */
#quoteSuccess {
    display: none;               /* hidden by default */
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    background: #e6f5ea;
    color: #1b7444;
    border: 1px solid #b8e2c5;
    position: relative;
}

/* small icon on left using :before */
#quoteSuccess::before {
    content: "✔";
    display: inline-block;
    margin-right: 6px;
    font-weight: bold;
}

/* optional: subtle shadow */
#quoteSuccess {
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}


#quoteErrorsGeneral {
    margin-top: 10px;
    font-size: 14px;
}
.form_2 .form-control{
    margin-bottom: 0px;
}
/* Base style for submit button (if needed) */
/* .qut_submit { ... } */

/* While loading */
.qut_submit.loading {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Little circular spinner inside the button */
.qut_submit .btn-spinner {
    display: inline-block;
    margin-left: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    animation: btn-spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}
