        .registration-panel {
            width: 100%;
            max-width: 1140px;
        }
        
       
        /* Stepper Navigation */
        .stepper-nav {
            display: flex;
            justify-content: space-between;
            list-style: none;
            padding: 0 0 1rem 0;
            margin: 0 0 3rem 0;
            border-bottom: 2px solid #eaecf0;
        }
        .stepper-nav .step a {
            text-decoration: none;
            font-weight: 500;
            color: var(--fly-text-secondary);
        }
        .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-weight: 700; }
        .otp-form p { color: var(--fly-text-secondary); }
        .otp-inputs {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
        }
        .otp-input {
            width: 60px;
            height: 70px;
            text-align: center;
            font-size: 2rem;
            font-weight: 500;
            border-radius: 8px;
            border: 1px solid var(--fly-border-color);
            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);
        }
        .resend-link { font-size: 0.9rem; }
        .resend-link a { color: var(--fly-dark-blue); font-weight: 500; text-decoration: underline; }
        .btn-verify {
            background-color: var(--fly-dark-blue);
            border-color: var(--fly-dark-blue);
            padding: 0.75rem 2rem;
            font-weight: 500;
            border-radius: 8px;
        }
        .btn-cancel {
            background-color: #fff;
            border-color: var(--fly-border-color);
            color: var(--fly-text-primary);
            padding: 0.75rem 2rem;
            font-weight: 500;
            border-radius: 8px;
            box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
        }
