        body {
            font-family: 'Inter Tight', sans-serif;
        }

        #progressbar {
            margin-bottom: 10px;
            overflow: hidden;
            color: lightgrey;
            list-style-type: none;
            padding: 0;
            display: flex;
            justify-content: space-between;
        }

        #progressbar li {
            list-style-type: none;
            text-transform: uppercase;
            font-size: 15px;
            width: 25%;
            float: left;
            position: relative;
            text-align: center;
        }

        #progressbar li:before {
            content: "\2022";
            /* Bullet point */
            width: 30px;
            height: 30px;
            line-height: 30px;
            display: block;
            font-size: 18px;
            color: #ffffff;
            background: lightgrey;
            border-radius: 50%;
            margin: 0 auto 10px auto;
        }

        #progressbar li:after {
            content: '';
            width: 100%;
            height: 2px;
            background: lightgrey;
            position: absolute;
            left: 0;
            top: 15px;
            z-index: -1;
        }

        #progressbar li:last-child:after {
            width: 0%;
        }

        #progressbar li.active:before,
        #progressbar li.active:after {
            background: #00376B;
            /* Purple color for active steps */
            color: white;
        }

        .progress {
            height: 10px;
            margin-bottom: 20px;
            border-radius: 5px;
            background-color: #e0e0e0;
        }

        .progress-bar {
            background-color: #00376B;
            /* Purple color for progress bar */
            border-radius: 5px;
        }

        fieldset {
            display: none;
            border: none;
            padding: 20px;
            position: relative;
        }

        fieldset:first-of-type {
            display: block;
            /* Show first fieldset by default */
        }



        .fs-title {
            font-size: 20px;
            color: #2C3E50;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .fieldlabels {
            font-weight: lighter;
            margin-top: 10px;
            display: block;
            color: #333;
        }

        input[type="text"],
        input[type="number"],
        input[type="email"],
        input[type="date"],
        select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            margin-bottom: 15px;
            box-sizing: border-box;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        input[type="text"]:focus,
        input[type="number"]:focus,
        input[type="email"]:focus,
        input[type="date"]:focus,
        select:focus {
            border-color: #00376B;
            outline: none;
        }
		.action-button{border-radius: 25px;		}

        .action-button,
        .resend-otp-button {
            background-color: #00376B;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            margin: 10px 5px;
            font-size: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .action-button:hover,
        .action-button:focus,
        .resend-otp-button:hover,
        .resend-otp-button:focus {
            background-color: #512DA8;
            transform: translateY(-2px);
            outline: none;
        }

        .action-button-previous {
            background-color: #ccc;
            color: #333;
        }

        .action-button-previous:hover,
        .action-button-previous:focus {
            background-color: #b0b0b0;
        }

        .t-otp {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .t-otp input {
            width: 45px;
            height: 45px;
            text-align: center;
            font-size: 20px;
            border: 1px solid #ccc;
            border-radius: 8px;
        }

        .t-otp input:focus {
            border-color: #00376B;
            outline: none;
        }

        .fit-image {
            width: 100px;
            height: 100px;
            object-fit: contain;
        }
        .location-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    background: white;
    z-index: 10;
    width: 100%;
    display: none;
}

.location-results-list li {
    padding: 8px;
    cursor: pointer;
}

.location-results-list li:hover {
    background-color: #f0f0f0;
}


        .purple-text {
            color: #00376B;
        }

        /* Toggle Switch for Marketing Option */
        .form-group-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 15px;
            margin-bottom: 15px;
            padding: 10px 0;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            -webkit-transition: .4s;
            transition: .4s;
            border-radius: 34px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked+.slider {
            background-color: #00376B;
        }

        input:focus+.slider {
            box-shadow: 0 0 1px #00376B;
        }

        input:checked+.slider:before {
            -webkit-transform: translateX(26px);
            -ms-transform: translateX(26px);
            transform: translateX(26px);
        }

        /* Rounded sliders */
        .slider.round {
            border-radius: 34px;
        }

        .slider.round:before {
            border-radius: 50%;
        }

        a {
            color: inherit;
        }

        a:hover {
            text-decoration: none;
        }

        .container-fluid{
            min-height: 700px;
        }
        input.action-button {
            border-radius: 15px;
    padding: 10px 25px;
    background-color: #003366; /* dark blue */
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
}

input.action-button-previous {
            border-radius: 15px;
    padding: 10px 25px;
    background-color: #003366; /* dark blue */
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
}
