
    .formContBG {
        background: rgba(0, 0, 0, 0.85);
        position: fixed;
        top: 0px;
        bottom: 0px;
        right: 0px;
        left: 0px;
        z-index: 9999;
    }
    .formCont {
        position: fixed;
        top: 0px;
        bottom: 0px;
        right: 0px;
        left: 0px;
        max-width: 600px;
        background: #ffffff;
        margin: auto;
        padding: 30px 40px;
        max-height: fit-content;
        border-radius: 20px;
        overflow: hidden;
        z-index: 99999;
    }
    .formCont .formHead {
        position: relative;
        margin-bottom: 50px;
    }
    .formCont .formHead::before {
        position: absolute;
        content: "";
        top: -45px;
        right: 0;
        bottom: 0;
        left: -50px;
        background: #f7ad00;
        width: 120%;
        height: 220%;
        z-index: -1;
    }
    .formCont .formHead h4 {
        font-size: 22px;
        line-height: 22px;
        text-align: center;
        margin: 0px;
        margin-bottom: 5px;
    }
    .formCont .formHead h3 {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
        margin: 0px;
    }
    .formCont .form-control {
        border: 1px solid #9b9b9b;
        border-radius: 8px;
    }
    .formCont .btn {
        background: #f7ad00;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.5;
        text-transform: uppercase;
        border: none;
        border-radius: 50px;
        max-width: 200px;
        width: 100%;
    }
    .formCont .btn.verify {
        background: #4379F2;
        color: #ffffff;
    }
    .formCont .btn.schedule {
        background: #000000;
        color: #ffffff;
    }
    .formCont .btn.wApp {
        background: #25d366;
        color: #ffffff;
    }
    @media only screen and (max-width: 767px) {
        .formCont {
            padding: 20px 30px;
        }
        .formCont .formHead {
            margin-bottom: 30px;
        }
        .formCont .formHead::before {
            top: -33px;
            left: -30px;
        }
        .formCont .formHead h4 {
            font-size: 17px;
            line-height: 18px;
            font-weight: 600;
        }
        .formCont .formHead h3 {
            font-size: 17px;
            line-height: 18px;
            font-weight: 600;
        }
        .formCont .btn {
            font-size: 14px;
            max-width: 140px;
        }
    }