* body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            font-family: "Hind Vadodara", sans-serif;
            font-style: normal;
            font-weight: 500;
        }

        .form-container {
            max-width: 70%;
            margin: 30px auto;
            overflow: hidden;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .form-title {
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            background-color: #ffdf50;
            color: black;
            padding: 10px;
            margin-bottom: 20px;
        }

        .responsive-form {
            display: flex;
            flex-direction: column;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 15px;
        }



        .form-column {
            flex: 1;
            min-width: 200px;
            max-width: calc(33.33% - 20px);
        }

        .form-column_full {
            flex: 1;
            width: 100%;

        }

        .full-width {
            flex: 1 100%;
        }

        label {
            display: block;
            margin-bottom: 6px;
            font-size: 18px;

        }

        input,
        textarea,
        select,
        button {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 6px;
            border: 1px solid #ccc;
            box-sizing: border-box;
            font-size: 18px;
            font-family: "Hind Vadodara", sans-serif;
        }

        button {
            background-color: #156580;
            color: white;
            font-size: 16px;
            cursor: pointer;
            margin-top: 10px;
            border: 0px solid #ccc;
        }

        button:hover {
            background-color: #45a049;
        }

        form {
            padding: 20px;
        }

        .error-border {
            border: 2px solid red;
        }


        /* Responsive Styles */
        @media (max-width: 900px) {
            .form-column {
                max-width: calc(50% - 20px);

            }

            .form-container {
                max-width: 100%;
                margin: 0px auto;
                overflow: hidden;
                background-color: #fff;
                border-radius: 0px;

            }
        }

        @media (max-width: 600px) {
            .form-column {
                max-width: 100%;
            }

            .form-container {
                max-width: 1000px;
                margin: 0px auto;
                overflow: hidden;
                background-color: #fff;
                border-radius: 0px;

            }
        }


        #preview-container {
            margin-top: 10px;
            position: relative;
            display: inline-block;
        }

        #preview-container img {
            width: 100px;
            height: 100px;
            border-radius: 20%;
            /* Makes it circular */
            object-fit: cover;
            /* Ensures center crop */
            object-position: center;
            /* Center of the image */
        }

        #remove-btn {
            position: absolute;
            top: -5px;
            right: -5px;
            background: red;
            color: white;
            border: none;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            font-size: 16px;
            cursor: pointer;
            line-height: 24px;
            text-align: center;
        }

        .spinner {
            width: 14px;
            height: 14px;
            border: 2px solid #fff;
            border-top: 2px solid transparent;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            display: inline-block;
            vertical-align: middle;
            margin-right: 6px;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Content wrapper for blurring */
        .content-wrapper {
            transition: filter 0.3s ease;
        }

        /* Blur effect */
        .blur {
            filter: blur(5px);
        }

        /* Overlay */
        #popupOverlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            padding: 20px;
            overflow-y: auto;
        }

        #popupBox {
            background: #fff;
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 10px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            overflow-x: hidden;
            text-align: left;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            font-size: 14px;
        }


        @media (max-width: 600px) {

            /* Content wrapper for blurring */
            .content-wrapper {
                transition: filter 0.3s ease;
            }

            /* Blur effect */
            .blur {
                filter: blur(5px);
            }

            /* Overlay */
            #popupOverlay {
                position: fixed;
                top: 0;
                left: 0;
                max-width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.3);
                display: none;
                justify-content: center;
                align-items: center;
                z-index: 9999;
                padding: 20px;
            }

            #popupBox {
                background: #fff;
                backdrop-filter: blur(10px);
                padding: 20px;
                border-radius: 10px;
                max-width: 100%;
                overflow-y: auto;
                text-align: left;
                /* Align text to right */
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
                font-size: 12px;
            }


        }