.appointment-container {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: auto;
}

.appointment-container.book-apt-page-form{
background: #FFFFFF;
    border-radius: 10px;
}
.appointment-container.call-back-form{
 background: #D2EBF7;
}

.appointment-box {
    flex: 1;
    padding: 0;
}

.appointment-box+.appointment-box {
    border-left: 2px dashed #ddd;
    padding-left: 40px;
}

.appointment-box h5 {
    font-size: 30px;
    font-weight: 600;
    color: #DB9F4A;
    margin-bottom: 20px;
}

.appointment-container .form-control,
.form-select,
textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: unset;
    margin-bottom: 15px;
    font-size: 16px;
    color: #727272;
}

.appointment-container .form-control,
.appointment-container .form-select,
.appointment-container textarea {
    background: #7272721A;
}

.appointment-container .form-control:focus,
.form-select:focus,
textarea:focus {
    outline: none;
    border: 1px solid #c9c9c9;
    background: #fff;
}

.appointment-container .row {
    display: flex;
    gap: 10px;
}

.appointment-container .row .col {
    flex: 1;
}

.appointment-container .form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    line-height: 28px;
    color: #585858;
    margin-bottom: 15px;
}

/* .appointment-container .form-check input {
        border: 2.1px solid #D9D9D9;
        border-radius: 5px;
    } */

.appointment-container .form-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 45px;
    height: 20px;
    border: 2px solid #D9D9D9;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    position: relative;
}

.appointment-container .form-check input[type="checkbox"]:checked {
    background: #DB9F4A;
    border-color: #DB9F4A;
}

.appointment-container .form-check input[type="checkbox"]:checked::after {
    content: "✔";
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: -4px;
    left: 2px;
}

.appointment-container .btn-custom {
    background: #DB9F4A;
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: "background 0.3s";
    width: max-content;
    justify-content: center;
    display: flex;
    margin: 0 auto;
    /* font-family: "open-runde; */
}

.appointment-container .btn-custom:hover {
    background: #b87414;
}

.has-error {
    border: 1px solid #d93025 !important;
}

.form-loader {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #00000091;
    top: 0;
    left: 0;
}

.form-loader-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-loader p {
    color: #fff;
    margin-bottom: 0;
    margin-top: 10px;
}

.spinner {
    display: flex;
    width: 28px;
    height: 28px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #DB9F4A;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.error-msg {
    color: #d93025;
    font-size: 13px;
    margin-top: -10px;
    margin-bottom: 10px;
    display: block;
}


@media screen and (max-width: 991px) {
    .appointment-container {
        max-width: 90%;
        display: block !important;
    }

    .appointment-box+.appointment-box {
        border-top: 2px dashed #ddd;
        border-left: unset;
    }

}

@media screen and (max-width: 767px) {
    .appointment-container {
        max-width: 100%;
        padding: 12px;
        display: flex !important;
        flex-direction: column-reverse;
    }

    .appointment-box {
        padding: 20px 12px;
    }

    .appointment-box+.appointment-box {
        padding: 12px;
    }

    .appointment-container .form-check input[type="checkbox"] {
        width: 70px;
        height: 18px;
    }

    .appointment-container .row {
        display: block;
    }

    .appointment-box h5 {
        font-size: 20px;
        line-height: 26px;
    }
}