        :root {
            --primary-orange: #ff6b35;
            --primary-orange-alpha: #ff6b35d4;
            --dark-bg: #0a0a0a;
            --dark-secondary: #1a1a1a;
            --dark-tertiary: #2a2a2a;
            --text-light: #ffffff;
            --text-gray: #b8b8b8;
            --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c42 100%);
        }
 
        /* Custom Gilroy-like font stack */
        .font-gilroy {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            font-weight: 600;
        }
 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
 
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            min-height: 100vh;
            overflow-x: hidden;
        }
 
        .signup-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
 
        .form-column {
            background-color: var(--dark-bg);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
        }
 
        .form-column::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(255, 107, 53, 0.3), transparent);
        }
 
        .logo-column {
            background: var(--dark-secondary);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
 
        .company-logo {
            max-width: 200px;
            width: 100%;
            height: auto;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }
 
        .company-logo:hover {
            opacity: 1;
        }
 
        .signup-form {
            width: 100%;
            max-width: 420px;
            margin: 0 auto;
        }
 
        .back-link {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s ease;
        }
 
        .back-link:hover {
            color: var(--primary-orange);
        }
 
        .back-link i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }
 
        .signup-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-light);
        }
 
        .signup-subtitle {
            color: var(--text-gray);
            font-size: 1rem;
            margin-bottom: 2.5rem;
        }
 
        .signup-subtitle a {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
        }
 
        .signup-subtitle a:hover {
            text-decoration: underline;
        }
 
        .form-group {
            margin-bottom: 1.5rem;
        }
 
        .form-row {
            display: flex;
            gap: 1rem;
        }
 
        .form-row .form-group {
            flex: 1;
            margin-bottom: 1.5rem;
        }
 
        .form-label {
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
 
        .form-label .required {
            color: var(--primary-orange);
            margin-left: 2px;
        }
 
        .form-control {
            background-color: var(--dark-tertiary);
            border: 1px solid rgba(255, 107, 53, 0.2);
            border-radius: 10px;
            padding: 0.875rem 1rem;
            font-size: 0.95rem;
            color: var(--text-light);
            transition: all 0.3s ease;
            height: 50px;
        }
 
        .form-control::placeholder {
            color: var(--text-gray);
            opacity: 0.7;
        }
 
        .form-control:focus {
            background-color: var(--dark-tertiary);
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.1);
            color: var(--text-light);
        }
 
        .password-wrapper {
            position: relative;
        }
 
        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-gray);
            cursor: pointer;
            padding: 0;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
 
        .password-toggle:hover {
            color: var(--primary-orange);
        }
 
        .btn-signup {
            width: 100%;
            background: var(--gradient-primary);
            border: none;
            border-radius: 10px;
            padding: 0.875rem;
            font-size: 1rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            height: 50px;
            margin-bottom: 1.5rem;
        }
 
        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
            color: white;
        }
 
        .btn-signup:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.2);
        }
 
        /* Mobile responsiveness */
        @media (max-width: 991.98px) {
            .signup-container .row {
                justify-content: center;
            }
 
            .form-column {
                padding: 1.5rem;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                max-width: 100%;
            }
 
            .form-column::after {
                display: none;
            }
 
            .signup-title {
                font-size: 2rem;
            }
 
            .col-lg-6:first-child {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }
 
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
 
            .form-row .form-group {
                margin-bottom: 1.5rem;
            }
        }
 
        @media (max-width: 576px) {
            .signup-title {
                font-size: 1.75rem;
                text-align: center;
                margin-bottom: 1rem;
            }
 
            .signup-subtitle {
                text-align: center;
                margin-bottom: 2rem;
            }
 
            .form-column {
                padding: 1rem;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
            }
 
            .signup-form {
                width: 100%;
                max-width: 380px;
                margin: 0 auto;
            }
 
            .back-link {
                text-align: center;
                justify-content: center;
                margin-bottom: 1.5rem;
            }
        }
 
        /* Animations */
        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }
 
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
 
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
 
        .stagger-1 {
            animation-delay: 0.1s;
        }
 
        .stagger-2 {
            animation-delay: 0.2s;
        }
 
        .stagger-3 {
            animation-delay: 0.3s;
        }
 
        .stagger-4 {
            animation-delay: 0.4s;
        }
 
        .stagger-5 {
            animation-delay: 0.5s;
        }
 
        #phone {
            padding-left: 50px !important;
 
        }
 
        .iti {
            width: 100%;
 
        }
 
 
        .iti__country-list {
            background: #fff;
 
            color: #000;
 
            font-size: 14px;
 
            border: 1px solid #ccc;
 
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
 
            max-height: 250px;
            overflow-y: auto;
            z-index: 2000 !important;
 
        }
 
 
        .iti__country.iti__highlight {
            background-color: #007bff;
            /* Bootstrap primary blue */
            color: #fff;
        }
