   body {
            margin: 0;
            font-family: 'Unbounded', sans-serif;
            background-color: #111;
            color: white;
        }

        .content {
            display: flex;
            max-width: 100%;
            background: #000;
            border-radius: 10px;
            position: relative;
        }

        .left,
        .right {
            position: relative;
            flex: 1;
            text-align: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .left {
            background-image: url("../images/1.png");
              border-right: 10px solid rgb(250 145 6);
            box-shadow: 0px 0px 50px 0px rgba(255, 145, 6, 0.5);
            padding: 20px 70px;
        }

        .right {
            background-image: url("images/2.png");
        }

        .left::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .left h2 span,
        .right h3 span,
        .right p span {
            color: #fa9106;
        }

        .right {
            padding: 20px 60px;
        }

        form {
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
        }

        input,
        button {
            margin: 10px 0;
            padding: 10px;
            border: none;
            font-size: 14px;
            border-radius: 5px;
            font-family: 'Unbounded', sans-serif;
        }

        input:not([type="tel"]) {
            background: #222;
            color: white;
            border: 1.83px solid rgb(250 145 6);
            box-shadow: 0px 0px 26.77px 0px rgba(255, 255, 255, 0.42) inset;
            padding: 25px;
        }

        button {
               background: linear-gradient(267.99deg, #fa9106 15.06%, #FFF500 52.36%, #fa9106 95.27%);
            color: #883312;
            cursor: pointer;
            font-weight: bold;
            font-size: 30px;
            font-family: 'Unbounded', sans-serif;
        }

        button span {
            text-transform: uppercase;
        }

        h2,
        h3 {
            z-index: 10;
            position: relative;
            font-size: 36px;
            text-align: center;
            text-shadow: 0px 0px 32.58px 0px rgba(0, 0, 0, 1);
        }

        p {
            position: relative;
            z-index: 10;
            font-weight: 400;
            font-size: 12px;
            width: 99%;
            margin: 20px auto;
            line-height: 36px;
            letter-spacing: 5%;
            text-align: center;
        }

        ::placeholder {
            color: white;
            text-shadow: 0px 0px 50px 0px rgba(255, 245, 0, 0.5);
            font-family: 'Unbounded', sans-serif;
            font-size: 24px;
        }

        .circle {
            width: 35px;
            height: 35px;
            opacity: 0.8;
            background: #fa5c06;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;

        }

        .circle::before {
            content: "";
            width: 25px;
            height: 25px;
            background: #7a1212;
            border-radius: 50%;
        }

        .submit-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            height: 50px;
            gap: 20px;
        }

        .consultation {
            text-transform: uppercase;
        }

        .iti {
            width: 100%;
        }

        .iti--separate-dial-code .iti__selected-dial-code {
            font-size: 24px;
        }

        .iti__country {
            color: black;
        }

        .iti input,
        .iti input[type=text],
        .iti input[type=tel] {
            width: 100%;
        }

        .iti__selected-flag {
            padding: 0 6px 0 20px;
        }

        @media (max-width: 1023px) {

            .iti input,
            .iti input[type=text],
            .iti input[type=tel] {
                padding-left: 90px !important;
            }

            .iti--separate-dial-code .iti__selected-dial-code {
                font-size: 14px;
            }

            .content {
                flex-direction: column;
                text-align: center;
            }

            .left {
                border-right: 0;
                border-bottom: 8px solid rgba(255, 245, 0, 1);
                padding: 20px;
            }

            h2 {
                font-size: 21px;
                padding-top: 50px;
            }

            .right {
                padding: 20px;
            }

            h3 {
                font-size: 21px;
                margin-top: 0;
                text-align: center;
            }

            ::placeholder {
                font-size: 14px;
            }

            input {
                font-size: 14px;

            }

            .circle {
                width: 25px;
                height: 21px;
                opacity: 0.8;
                background: #000000cc;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
            }

            .circle::before {
                content: "";
                width: 16px;
                height: 15px;
                background: black;
                border-radius: 50%;
            }

            .submit-btn {
                height: 20px;
            }

            .consultation {
                font-size: 14px;
            }

            p {
                font-size: 13px;
                margin: 20px auto;
                line-height: 23px;
                width: 95%;
            }
        }