        .registration-panel {
            width: 100%;
            max-width: 1140px;
            padding-top: 50px;
        }
        
       
        /* Stepper Navigation */
        .stepper-nav {
            display: flex;
            justify-content: space-between;
              flex-wrap: wrap;
            list-style: none;
            margin: 0 0 3rem 0;
            border-bottom: 3px solid #eaecf0;
        }
        .stepper-nav li{
            padding-bottom: 15px;
        }
        .step.completed{
            flex: 1 1 25%; /* Default: 4 per row */
            max-width: 25%;
            border-bottom: 3px solid #003d6f;
            width: fit-content;
        }
        .stepper-nav .step a {
           font-family: inter Tight;
           font-weight: 500;
           font-size: 16px;
            line-height: 120%;
            letter-spacing: 0px;
            color: #053862;
        }
        .stepper-nav .step.completed a {
            color: var(--fly-dark-blue);
        }
        /* .stepper-nav .step.completed a::after {
            content: '✓';
            display: inline-block;
            margin-left: 0.5rem;
            font-weight: bold;
            color: var(--fly-dark-blue);
        } */
        
        /* OTP Form Styles */
        .otp-form h5 {
            font-family: Inter Tight;
            font-weight: 600;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0px;
            color: #101828;
        }
        .otp-form p {
           font-family: Inter Tight;
           font-weight: 400;
           font-size: 14px;
           line-height: 20px;
           letter-spacing: 0px;
           color: Gray/600;
        }
        .otp-form .email{
            font-family: Inter Tight;
            font-weight: 600;
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0%;
            color: rgba(71, 84, 103, 1);
        }
        .otp-form a{
            font-family: Inter Tight;
            font-weight: 600;
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0%;
            color: rgba(71, 84, 103, 1);
        }
        .otp-inputs {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
        }
        .otp-input {
            width: 80px;
            height: 80px;
            text-align: center;
            font-family: Inter Tight;
            font-weight: 500;
            font-size: 40px;
            line-height: 60px;
            letter-spacing: -2px;
            color: #053862;
            border-radius: 8px;
            border: 2px solid #053862;
            background-color: #fff;
            box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
        }
        .otp-input:focus {
            outline: none;
            border-color: #0d6efd;
            box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
        }
        .btn-cancel {
            background-color: #fff;
            border-color: #053862;
            color:#053862;
            max-width: 174px;
            width: 100%;
            padding: 16px 24px;
            font-family:Inter Tight;
            font-weight: 500;
            font-size: 16px;
            line-height: 100%;
            letter-spacing: 0%;
            border-radius: 6px;
            box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
        }
        .btn-verify {
            background-color: #053862;
            border-color: #053862;
            color:#ffffff;
            max-width: 174px;
            width: 100%;
            padding: 16px 24px;
            font-family:Inter Tight;
            font-weight: 500;
            font-size: 16px;
            line-height: 100%;
            letter-spacing: 0%;
            border-radius: 6px;
            box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
        }
        /* Additional Responsive Adjustments */
        @media (max-width: 1050px){
            .left-column h1 {
                font-size: 35px !important;
            }
        }
         @media (max-width: 992px){
            .left-column {
                text-align: center;
            }
            .otp-input {
                width: 70px;
                height: 70px;
            }
            .btn-cancel {
                max-width: 150px !important;
            }
            .btn-verify {
                max-width: 150px !important;
            }
        }
         @media (max-width: 768px){
            .left-column h1 {
                font-size: 28px !important;
            }
            .otp-input {
                width: 60px;
                height: 60px;
            }
            .btn-cancel {
                max-width: 140px !important;
            }
            .btn-verify {
                max-width: 140px !important;
            }
        }

        @media (max-width: 576px){
            .stepper-nav .step {
                flex: 1 1 45%;
                max-width: 45%;
                margin-bottom: 10px;
            }
             .left-column {
                padding: 0px 1rem !important;
            }
            .left-column h1 {
                font-size: 22px !important;
            }
            .left-column p {
                font-size: 14px !important;
            }
            .right-column{
                padding: 0 1rem !important;
            }
            .footer{
                font-size: 13px !important;
            }

        }     