
        /* Registration form styling */
        .registration-container {
            min-height: calc(100vh - 80px);
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            font-family: 'Poppins', sans-serif;
            padding: 2rem 1rem;
        }

        .registration-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .registration-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            padding: 3rem 2.5rem;
        }

        .registration-header {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
        }


        .user-type-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: #1a1640;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .registration-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
            font-family: 'Inter', sans-serif;
        }

        .registration-subtitle {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.5;
        }

        .form-section {
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            background: #f8fafc;
            border-radius: 12px;
        }

        .form-section-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #374151;
            font-size: 0.9rem;
        }

        .form-control-lg {
            font-size: 0.95rem !important;
            line-height: 1.5 !important;
            border: 2px solid #e2e8f0 !important;
            border-radius: 12px !important;
            background: white !important;
            padding: 0.875rem 1rem !important;
            transition: all 0.3s ease !important;
        }

        .form-control-lg:focus {
            outline: none !important;
            border-color: #ff6b35 !important;
            background: white !important;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem 1.5rem;
            background: #ff6b35;
            color: white !important;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        .form-text {
            font-size: 0.85rem;
            color: #64748b;
            margin-top: 0.5rem;
        }

        .invalid-feedback {
            color: #dc2626;
            font-size: 0.85rem;
            margin-top: 0.25rem;
        }

        .alert {
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }

        .alert-info {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border: 1px solid #60a5fa;
            color: #1d4ed8;
        }

        @media (max-width: 768px) {
            .registration-card {
                padding: 2rem 1.5rem;
                margin: 1rem;
            }

            .registration-title {
                font-size: 1.8rem;
            }


            .form-section {
                padding: 1rem;
            }
        }
    