        .form-container {
            background: #fff;
            border-radius: 15px;
        }

        .progress-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            margin-bottom: 24px;
            width: 80%;
        }

        .circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #eee;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            font-weight: 500;
        }

        .circle.active {
            background: #be1823;
            color: #fff;
        }

        .progress-bar {
            position: absolute;
            top: 50%;
            left: 15px;
            width: calc(100% - 30px);
            height: 6px;
            background: #eee;
            transform: translateY(-50%);
            z-index: 1;
            border-radius: 3px;
        }

        .progress-bar-fill {
            height: 100%;
            background: #be1823;
            width: 50%;
            /* Initial width at step 1 */
            border-radius: 3px;
            transition: width 0.4s ease;
        }

        .form-internal-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 24px;
            padding-top: 24px;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 8px;
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
        }

        .field-title-details {
            color: #000;
            font-size: clamp(1rem, 0.5rem + 0.833vw, 1.5rem);
            font-weight: 600;
            text-decoration-line: underline;
            margin-bottom: 8px;
        }

        .basic-details {
            margin-top: 16px;
        }

        label {
            display: block;
            /* margin-top: 15px; */
            font-size: clamp(0.875rem, 0.5rem + 0.52vw, 1.125rem);
            font-weight: 400;
        }

        input,
        select,
        textarea,
        .cfs-toggle {
            width: auto;
            padding: 16px 20px;
            /* margin-top: 5px; */
            border: 1px solid #ccc;
            font-size: clamp(0.875rem, 0.5rem + 0.52vw, 1.125rem);
            font-weight: 400;
            border-radius: 8px;
        }

        input {
            background-color: white !important;
            transition: background-color 9999s ease-in-out 0s;
            /* Chrome autofill hack */
        }

        input:focus,
        select:focus,
        textarea:focus {
            background-color: white !important;
            outline: none;
            box-shadow: none !important;
        }

        /* Autofill override for Chrome/Safari */
        input:-webkit-autofill {
            -webkit-box-shadow: 0 0 0 1000px white inset !important;
            box-shadow: 0 0 0 1000px white inset !important;
            -webkit-text-fill-color: black !important;
        }

        .user-type-btns button {
            margin-right: 10px;
            /* margin-top: 10px; */
            padding: 6px 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            background: #fff;
            cursor: pointer;
            font-size: clamp(0.875rem, 0.5rem + 0.52vw, 1.125rem);
            font-weight: 400;
        }

        .user-type-btns .selected {
            border: 1px solid #BE1622;
            color: #be1823;
            font-weight: 600;
            background: linear-gradient(103deg, #BE1622 5.54%, #E84E1B 50.85%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .buttons {
            display: flex;
            justify-content: space-between;
            /* margin-top: 30px; */
        }

        .buttons button {
            padding: 8px 20px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: clamp(1rem, 0.5rem + 0.625vw, 1.25rem);
            max-width: 7rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-top: 24px;
        }

        .buttons .next,
        .buttons .submit {
            background: linear-gradient(103deg, #BE1622 5.54%, #E84E1B 50.85%);
            color: white;
        }

        .buttons .prev:disabled {
            cursor: not-allowed;
            color: #ccc;
            border: 1px solid #ccc;
            font-weight: 400;
        }

        .buttons .prev {
            background: #fff;
            border: 1px solid #000;
            color: #000;
        }

        .error {
            color: #be1823;
            font-size: clamp(0.75rem, 0.5rem + 0.208vw, 0.875rem);
            margin-top: 5px;
        }

        /* Gender Selction */
        .cfs-dropdown {
            position: relative;
        }

        .cfs-toggle {
            cursor: pointer;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }

        .cfs-selected {
            flex: 1;
            color: #ccc;
        }

        .cfs-dropdown.has-value .cfs-selected {
            color: #000;
        }

        .cfs-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .cfs-arrow svg {
            width: 18px;
            height: 18px;
        }

        .cfs-dropdown.open .cfs-arrow {
            transform: rotate(180deg);
        }

        .cfs-menu {
            display: none;
            position: absolute;
            top: 90%;
            left: 0;
            width: 100%;
            background-color: white;
            border-bottom: 1px solid #ccc !important;
            z-index: 1000;
            /* padding: 16px 8px; */
            font-size: clamp(0.875rem, 0.5rem + 0.52vw, 1.125rem);
            font-weight: 400;
            /* border-radius: 8px; */
            border-bottom-right-radius: 8px;
            border-bottom-left-radius: 8px;
            border-top: none;
        }

        .cfs-option {
            cursor: pointer;
            width: auto;
            padding: 8px;
            border: 1px solid #ccc;
        }

        .cfs-option:hover {
            background-color: #BE1622;
            color: white;
        }

        .cfs-show {
            display: block;
            overflow: auto;
        }


        .cf-disclaimer {
            display: flex;
            flex-direction: row;
            justify-content: center;
            margin-top: 40px;
        }