
        :root {
            --color-primary-dark: #09194F; /* Navy Blue */
            --color-primary-green: #A7C957; /* Lime Green */
            --color-accent-teal: #007B83; /* Teal for numbers */
            --color-bg-light: #f4f6f9; /* Light gray background */
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: white;
            color: #333;
        }

        /* Navbar Styling */
        .navbar-custom {
            background-color: var(--color-primary-dark);
            border-bottom: 0.667px solid #E2E8F0;
            display: flex;
            min-height: 90px;
            padding: 0 86px 0.667px 86px;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            align-self: stretch;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: rgba(255,255,255,0.9) !important;
        }

        .nav-cta {
            padding: 0.5rem 1.5rem;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none;
        }

        .btn-outline-custom {
            border-radius: 8px;
            border: 1px solid #FFF;
            background: rgba(0, 0, 0, 0.00);
            color: #FFF;
            font-family: Roboto;
            font-size: 15.887px;
            font-style: normal;
            font-weight: 700;
            line-height: 24px; /* 151.066% */
            text-transform: capitalize;
            display: flex;
            padding: 13px 17px;
            justify-content: center;
            align-items: center;
            margin-right: 10px;
        }

        .btn-outline-custom:hover {
            border-radius: 8px;
            border: 1px solid #FFF;
            background: rgba(245, 245, 250, 0.10);
        }

        .btn-primary-custom {
            border-radius: 8px;
            background: var(--color-primary-green);
            color: #09194F;
            font-family: Roboto;
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 24px; /* 150% */
            text-transform: capitalize;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            padding: 13px 17px;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .btn-primary-custom:hover {
            background: #759728;
        }

        /* Hero Section */
        .hero-section {
            padding-top: 84px;
            text-align: center;
        }

        .hero-title {
            color: var(--color-accent-teal);
            text-align: center;
            font-family: Lato;
            font-size: 48px;
            font-style: normal;
            font-weight: 700;
            line-height: 54px; /* 112.5% */
            margin-bottom: 12px;
        }

        .hero-subtitle {
            color: var(--Untitled-Rectangle-source, #09194F);
            text-align: center;
            font-family: Lato;
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 28px; /* 140% */
            margin: 0 auto 84px;
        }

        /* Feature Cards */
        .feature-card {
            border-radius: 10px;
            border: 0.667px solid #E2E8F0;
            background: #FFF;
            padding: 24px;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: #DDEEEF;    
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--color-accent-teal);
            font-size: 1.5rem;
        }

        .feature-title {
            color: var(--Untitled-Rectangle-source, #09194F);
            font-family: Lato;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 28px; /* 155.556% */
            text-align: left;
            margin-bottom: 0.75rem;
        }

        .feature-text {
            color: #45556C;
            font-family: Lato;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px; /* 150% */
            text-align: left;
            margin-bottom: 0;
        }

        /* How it Works Section */
        .how-section {
            padding-top: 84px;
            padding-bottom: 84px;
        }

        .section-title {
            color: #09194F;
            text-align: left;
            font-family: Lato;
            font-size: 30px;
            font-style: normal;
            font-weight: 700;
            line-height: 36px; /* 120% */
            margin-bottom: 32px;
        }

        .step-item {
            text-align: center;
            padding: 1rem;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background-color: #00818A;
            color: #FFF;
            text-align: center;
            font-family: Lato;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 28px; /* 140% */
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .step-title {
            color: var(--Untitled-Rectangle-source, #09194F);
            text-align: center;
            font-family: Lato;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 27px; /* 150% */
            margin-bottom: 8px;
        }

        .step-text {
            color: #45556C;
            text-align: center;
            font-family: Lato;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px; /* 150% */
            max-width: 280px;
            margin: 0 auto;
        }

        /* CTA Section */
        .cta-section {
            padding-bottom: 84px;
        }

        .cta-box {
            background-color: var(--color-primary-green);
            border-radius: 16px;
            padding: 3.5rem 2rem;
            text-align: center;
        }

        .cta-title {
            color: var(--testo-cta, #09194F);
            text-align: center;
            font-family: Lato;
            font-size: 30px;
            font-style: normal;
            font-weight: 700;
            line-height: 36px; /* 120% */
            margin-bottom: 1rem;
        }

        .cta-text {
            color: var(--Untitled-Rectangle-source, #09194F);
            text-align: center;
            font-family: Lato;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px; /* 150% */
            max-width: 600px;
            margin: 0 auto 1.5rem;
        }

        .cta-form .input-group {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 12px;
        }

        .input-group-div {
            display: flex;
            gap: 0;
            max-width: 311.615px;
            width: 100%;

        }
        .cta-input {
            border: none;
            color: #000;
            font-family: Lato;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            display: flex;
            height: 36px;
            padding: 4px 12px 4px 12px;
            align-items: center;
        }
        .cta-input::placeholder {
            color: #717182;
            
        }

        .cta-input:focus {
            box-shadow: none;
        }

        .btn-cta-action {
            background-color: transparent;
            border: 1px solid var(--color-primary-dark);
            color: var(--color-primary-dark);
            display: flex;
            height: 36px;
            padding: 0 17px;
            justify-content: center;
            align-items: center;
            font-family: Roboto;
            font-size: 15.887px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px; /* 151.066% */
            text-transform: capitalize;
            border-radius: 8px !important; /* override input-group radius */
        }

        .btn-cta-action:hover {
            background-color: var(--color-primary-dark);
            color: white;
        }

        /* Footer */
        footer {
            padding: 2rem 0;
            border-top: 1px solid #eaeaea;
        }

        .footer-text {
            color: #45556C;
            font-family: Lato;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px; /* 142.857% */
        }

        .footer-links a {
            color: #45556C;
            font-family: Lato;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px; /* 142.857% */
            text-decoration: none;
            margin-left: 1.5rem;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--color-primary-dark);
        }

        /* -------------------------
           Login page layout
        -------------------------- */
        .login-page {
            background-color: #f4f6f9;
        }

        .login-wrapper {
            padding: 80px 0 120px;
        }

        .login-card {
            background-color: #ffffff;
            border-radius: 10px;
            border: 1px solid #E2E8F0;
            padding: 24px;
            max-width: 448px;
            width: 448px;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10) !important;
        }

        .login-logo-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background-color: #09194F;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-logo-inner {
            width: 40px;
            height: 40px;
            border-radius: 999px;
            border: 2px solid #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.25rem;
        }

        .login-title {
            color: #0F172B;
            text-align: center;
            font-family: Lato;
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: 32px; /* 133.333% */
        }

        .login-subtitle {
            color: var(--testo-cta, #09194F);
            font-family: Lato;
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 24px; /* 150% */
        }

        .login-label {
            color: var(--Color-Futurely-Dark-Hit-100, #010103);
            font-family: Lato;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 14px; /* 100% */
        }

        .login-input {
            border-radius: 8px;
            border: 0.6px solid var(--Color-Futurely-Dark-Hit-100, #09194F);
            color: var(--Color-Grey-Slightly-light-grey, #010103);
            font-family: Lato;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            display: flex;
            min-height: 36px;
            padding: 4px 40px 4px 12px;
            align-items: center;
        }

        .login-input:focus {
            box-shadow: none !important;
            border-color: #09194F !important;
        }

        /* -------------------------
           login/reset form errors
        -------------------------- */
        .login-input.is-invalid {
            border-radius: 8px;
            border-color: #DB4E4E;
            /* remove Bootstrap invalid icon inside inputs */
            background-image: none !important;
            padding-right: 40px !important;
        }

        /* also remove Bootstrap invalid icon for any form-control */
        .form-control.is-invalid,
        .form-select.is-invalid {
            background-image: none !important;
        }

        /* -------------------------
           Register page
        -------------------------- */
        .register-wrapper {
            padding-top: 48px;
        }

        .register-card {
            max-width: 680px;
        }

        .register-banner {
            border-radius: 10px;
            border: 0.667px solid #6A8700;
            background: rgba(167, 201, 87, 0.30);
            display: flex;
            padding: 24px;
            flex-direction: row;
            align-items: center;
            gap: 4px;
            align-self: stretch;
            color: #0F172B;
            font-family: Lato;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            justify-content: center;
            margin-bottom: 24px;
        }

        .register-section-title {
            display: flex;
            align-items: center;
            color: #0F172B;
            font-family: Lato;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 28px; /* 155.556% */
            margin-bottom: 12px;
            gap: 8px;
        }

        .register-help-text {
            color: #64748b;
            font-family: Lato;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            margin-top: 4px;
            margin-bottom: 6px;
        }

        .register-divider {
            margin: 18px 0;
            border-color: #E2E8F0;
        }

        .register-check-label {
            color: var(--Color-Grey-Slightly-light-grey, #505050);
            font-family: Lato;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px; /* 142.857% */
        }

        .register-check-link {
            color: #00818A;
            text-decoration: underline;
        }

        /* Checkbox styling (register) */
        .register-checks .form-check {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .register-checks .form-check .form-check-input {
            width: 16px;
            height: 16px;
            border-radius: 4px;
            border: 1px solid #09194F;
            background-color: transparent;
            margin-top: 2px;
            box-shadow: none !important;
            cursor: pointer;
        }

        .register-checks .register-check-body {
            flex: 1 1 auto;
            min-width: 0;
        }

        .register-checks .form-check .form-check-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(9, 25, 79, 0.15) !important;
        }

        .register-checks .form-check .form-check-input:checked {
            background-color: #09194F;
            border-color: #09194F;
        }

        /* remove bootstrap default checkbox svg */
        .register-checks .form-check .form-check-input:checked[type="checkbox"] {
            background-image: none !important;
        }

        /* draw custom white check */
        .register-checks .form-check .form-check-input:checked[type="checkbox"]::after {
            content: "";
            position: relative;
            display: block;
            width: 4px;
            height: 8px;
            border: solid #ffffff;
            border-width: 0 2px 2px 0;
            transform: translate(5px, 1px) rotate(45deg);
        }

        /* error state for checkbox */
        .register-checks .form-check .form-check-input.is-invalid {
            border-color: #DB4E4E !important;
        }

        .login-password-group.has-error .input-group-text {
            border-color: #DB4E4E !important;
        }

        .login-error-message {
            margin-top: 6px;
            display: flex;
            align-items: flex-start;
            color: #D33030;
            font-family: Lato;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 16px;
        }



        /* ===== FIX: Prevent checkbox label turning red ===== */
        .was-validated .form-check-input:invalid + .form-check-label,
        .was-validated .form-check-input:invalid ~ .form-check-label,
        .form-check-input.is-invalid + .form-check-label,
        .form-check-input.is-invalid ~ .form-check-label {
            color: #505050 !important;
        }

        /* Keep default label color always */
        .register-checks .form-check-label {
            color: #505050 !important;
        }




        .login-password-group .input-group-text {
            border-color: #010103;
            border-width:0.6px !important ;
            cursor: pointer;
        }

        .login-password-toggle i {
            color: #09194F;
        }

        .login-forgot-link {
            color: var(--New-UI-Color-1, #007B83);
            text-align: center;
            font-family: Lato;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px; /* 142.857% */
            text-decoration-line: underline;
            text-decoration-style: solid;
            text-decoration-skip-ink: auto;
            text-decoration-thickness: auto;
            text-underline-offset: auto;
            text-underline-position: from-font;
            margin: 8px 0px 8px;
        }

        .login-forgot-link:hover {
            text-decoration: underline;
        }

        .login-submit-btn {
            background-color: var(--color-primary-green);
            border-color: var(--color-primary-green);
            color: #09194F;
            font-weight: 700;
            text-align: center;
            font-family: Lato;
            font-size: 14px;
            border-radius: 4px;
            padding: 10px;
        }

        .login-submit-btn:hover {
            background-color: #759728;
            border-color: #759728;
        }

        .login-register-text {
            color: var(--Color-Grey-Slightly-light-grey, #505050);
            text-align: center;
            font-family: Lato;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px; /* 142.857% */
        }

        .login-register-link {
            color: var(--New-UI-Color-1, #007B83);
            font-family: Lato;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px;
            text-decoration-line: underline;
            text-decoration-style: solid;
            text-decoration-skip-ink: auto;
            text-decoration-thickness: auto;
            text-underline-offset: auto;
            text-underline-position: from-font;
        }

        .login-register-link:hover {
            text-decoration: underline;
        }

        .login-terms {
            font-size: 12px;
            color: #9CA3AF;
            margin-top: 16px;
        }

        .login-terms a {
            color: #007B83;
            text-decoration: none;
        }

        .login-terms a:hover {
            text-decoration: underline;
        }
        /* -------------------------
           reset password page layout
        -------------------------- */
        .reset-password-text {
            color: var(--Color-Grey-Slightly-light-grey, #505050);
            font-feature-settings: 'liga' off, 'clig' off;
            font-family: Lato;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 16px;
        }
        img.reset-password-image{
            width: 156px;
            height: 165px;
            aspect-ratio: 52/55;
        }
        .images-container {
            display: flex;
            justify-content: center;
        }
        .back-to-login-link {
            color: var(--Untitled-Rectangle-source, #09194F);
            text-align: center;
            font-family: Lato;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            text-decoration-line: underline;
            text-decoration-style: solid;
            text-decoration-skip-ink: auto;
            text-decoration-thickness: auto;
            text-underline-offset: auto;
            text-underline-position: from-font;
        }

        .form-check-label {
            color: var(--Color-Grey-Slightly-light-grey, #505050);
            font-family: Lato;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px; /* 142.857% */
        }

        .text-decoration-underline {
            color: #00818A !important;
            font-family: Lato;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px;
            text-decoration-line: underline;
            text-decoration-style: solid;
            text-decoration-skip-ink: auto;
            text-decoration-thickness: auto;
            text-underline-offset: auto;
            text-underline-position: from-font;
        }
        .select2-container--default .select2-selection--multiple .select2-selection__choice {
                background-color: #D2E8E9 !important;
                border-color: #D2E8E9 !important;
                border-radius: 4px !important;
                padding: 5px 8px !important;
                color: #314158 !important;
                font-family: Lato !important;
                font-size: 14px !important;
                font-style: normal !important;
                font-weight: 400 !important;
                line-height: 16px !important;
                margin-top: 0 !important;
            }
            
            .select2-container--bootstrap-5 .select2-dropdown .select2-results__options:not(.select2-results__options--nested) {
                border-radius: 12px !important;
                background: var(--fills-vibrant-use-plus-lighter-darker-quinary, #FBFBFB) !important;
                box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.16), 0 0 1px 0 rgba(0, 0, 0, 0.40) !important;
            }
            .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
            
                border-radius: 8px !important;
                background: rgba(0, 129, 138, 0.20) !important;
                
            }
            .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted{
                color: var(--Color-Futurely-Dark-Hit-100, #010103) !important;
                font-feature-settings: 'liga' off, 'clig' off !important;
                font-family: Lato !important;
                font-size: 14px !important;
                font-style: normal !important;
                font-weight: 400 !important;
                line-height: 24px !important; /* 171.429% */
                display: flex !important;
                padding: 8px !important;
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 8px !important;
                align-self: stretch !important;
            }
            .select2-container--bootstrap-5 .select2-dropdown {
                border-radius: 12px !important;
                background: var(--fills-vibrant-use-plus-lighter-darker-quinary, #FBFBFB) !important;
                box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.16), 0 0 1px 0 rgba(0, 0, 0, 0.40) !important;
                outline: none !important;
            }
            .select2-container--bootstrap-5.select2-container--focus .select2-selection {
                border-radius: 8px !important;
                border: 0.5px solid var(--Untitled-Rectangle-source, #09194F) !important;
                box-shadow: none !important;
                outline: none !important;
             }   
            span.select2-selection.select2-selection--multiple {
                border-radius: 8px !important;
                border: 0.5px solid var(--Untitled-Rectangle-source, #09194F) !important;
                color: #717182 !important;
                font-family: Lato !important;
                font-size: 12px !important;
                font-style: normal !important;
                font-weight: 400 !important;
                line-height: normal !important;
                padding: 8px 12px !important;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg opacity='0.5'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%2309194F' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    
                background-repeat: no-repeat !important;
                background-position: right 12px center !important;
                background-size: 16px 16px !important;
            }
            .select2-container--bootstrap-5 .select2-dropdown .select2-results__options:not(.select2-results__options--nested) {
                padding: 8px !important;
                border-radius: 12px !important;
                background: var(--fills-vibrant-use-plus-lighter-darker-quinary, #FBFBFB) !important;
                box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.16), 0 0 1px 0 rgba(0, 0, 0, 0.40) !important;
            }
            .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted){
                color: var(--Color-Futurely-Dark-Hit-100, #010103) !important;
                font-feature-settings: 'liga' off, 'clig' off !important;
                font-family: Lato !important;
                font-size: 14px !important;
                font-style: normal !important;
                font-weight: 400 !important;
                line-height: 24px; /* 171.429% */
                
            }
            .select2-container--bootstrap-5 .select2-dropdown {
                border: none !important;
            }
            .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted{
                border-radius: 8px !important;
                background: rgba(0, 129, 138, 0.20) !important;
                padding: 8px !important;
            }
            .select2-container--bootstrap-5 .select2-results__option {
                display: flex !important; 
                padding: 8px !important;
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 8px !important;
                align-self: stretch !important;
                color: var(--Color-Futurely-Dark-Hit-100, #010103) !important;
                font-feature-settings: 'liga' off, 'clig' off !important;
                font-family: Lato !important;
                font-size: 14px !important;
                font-style: normal !important;
                font-weight: 400 !important;
                line-height: 24px; /* 171.429% */
            }
            .select2-container--default .select2-results>.select2-results__options{
                border-radius: 12px !important;
                background: var(--fills-vibrant-use-plus-lighter-darker-quinary, #FBFBFB) !important;
                box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.16), 0 0 1px 0 rgba(0, 0, 0, 0.40) !important;
                padding: 8px !important;
                margin-top: 5px !important;
                display: flex;
                gap: 4px;
                flex-direction: column;
            }
            .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
                    border-radius: 8px !important;
                    background: rgba(0, 129, 138, 0.20) !important;
                    padding: 8px !important;
                    color: var(--Color-Futurely-Dark-Hit-100, #010103) !important;
                    font-feature-settings: 'liga' off, 'clig' off !important;
                    font-family: Lato !important;
                    font-size: 14px !important;
                    font-style: normal !important;
                    font-weight: 400 !important;
                    line-height: 24px; /* 171.429% */
            }
            .select2-container--default .select2-results__option--selected{
                    border-radius: 8px !important;
                    background: rgba(0, 129, 138, 0.20) !important;
                    padding: 8px !important;
                    color: var(--Color-Futurely-Dark-Hit-100, #010103) !important;
                    font-feature-settings: 'liga' off, 'clig' off !important;
                    font-family: Lato !important;
                    font-size: 14px !important;
                    font-style: normal !important;
                    font-weight: 400 !important;
                    line-height: 24px; /* 171.429% */
            }
            .select2-container--open .select2-dropdown {
                border: none !important;
            }

            .select2-results__option--selectable {
                    padding: 8px !important;
                    color: var(--Color-Futurely-Dark-Hit-100, #010103) !important;
                    font-feature-settings: 'liga' off, 'clig' off !important;
                    font-family: Lato !important;
                    font-size: 14px !important;
                    font-style: normal !important;
                    font-weight: 400 !important;
            }
            .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
                border-radius: 8px !important;
                border: 0.5px solid var(--Untitled-Rectangle-source, #09194F) !important;
                box-shadow: none !important;
                outline: none !important;
                padding: 4px 12px !important;
            }
            .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
            cursor: default;
            padding-left: 2px !important;
            }
            .select2-container .select2-search--inline .select2-search__field {
                color: #717182 !important;
                font-family: Lato !important;
                font-size: 14px !important;
                font-style: normal !important;
                font-weight: 400 !important;
                line-height: normal !important;
                height: 21px !important;
                margin: 0 !important;
            }

            .reset-password-text-success{
                color: var(--testo-cta, #09194F) !important;
                font-family: Lato;
                font-size: 12px;
                font-style: normal;
                font-weight: 400;
                line-height: 16px; /* 133.333% */
                margin-bottom: 12px;
            }
               
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .step-item {
                margin-bottom: 2rem;
            }
            .cta-box {
                padding: 2rem 1.5rem;
            }
            .login-card {
                width: 350px;
            }
        }