 .signup-page {
        background: linear-gradient(135deg, var(--primary-50) 0%, var(--bg-primary) 100%);
        font-family: var(--font-primary);
        position: relative;
        overflow-x: hidden;
    }
    
    .bg-pattern {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        z-index: -1;
    }
    
    .signup-container {
        background: var(--bg-primary);
        border-radius: var(--radius-2xl);
        box-shadow: var(--shadow-2xl);
        padding: 2rem;
        position: relative;
        z-index: 1;
    }
    
    .home-icon-mobile {
        position: absolute;
        top: 1rem;
        left: 1rem;
        z-index: 10;
    }
    
    .home-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--bg-secondary);
        border-radius: 50%;
        color: var(--text-secondary);
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-sm);
    }
    
    .home-link:hover {
        background: var(--color-primary);
        color: var(--text-inverse);
        transform: scale(1.1);
    }
    
    .home-link i {
        font-size: 1.1rem;
    }
    
    .logo-link {
        text-decoration: none;
        transition: transform 0.3s ease;
    }
    
    .logo-link:hover {
        transform: scale(1.05);
    }
    
    .brand-name {
        font-size: 2rem;
        font-weight: 700;
        margin: 0;
    }
    
    .welcome-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text-primary);
        font-family: var(--font-heading);
    }
    
    .welcome-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Progress Indicator */
    .progress-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .progress-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-secondary);
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .progress-step.active .step-number {
        background: var(--color-primary);
        color: var(--text-inverse);
    }
    
    .step-label {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-secondary);
    }
    
    .progress-step.active .step-label {
        color: var(--color-primary);
    }
    
    .progress-line {
        width: 60px;
        height: 2px;
        background: var(--border-light);
        position: relative;
    }
    
    .progress-line::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        background: var(--color-primary);
        transition: width 0.3s ease;
    }
    
    .progress-line.active::after {
        width: 100%;
    }
    
    /* Form Styles */
    .form-label {
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }
    
    .form-control {
        border: 2px solid var(--border-light);
        border-radius: var(--radius-lg);
        padding: 0.6rem 0.875rem;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px var(--primary-100);
    }
    
    .input-group-text {
        background: var(--bg-secondary);
        border: 2px solid var(--border-light);
        border-right: none;
        color: var(--text-secondary);
    }
    
    .input-group .form-control {
        border-left: none;
    }
    
    .input-group .form-control:focus + .input-group-text {
        border-color: var(--color-primary);
    }
    
    /* Password Strength */
    .password-strength {
        margin-top: 0.5rem;
    }
    
    .strength-bar {
        height: 4px;
        background: var(--border-light);
        border-radius: var(--radius-full);
        overflow: hidden;
        margin-bottom: 0.25rem;
    }
    
    .strength-fill {
        height: 100%;
        width: 0;
        transition: all 0.3s ease;
        border-radius: var(--radius-full);
    }
    
    .strength-fill.weak { width: 25%; background: var(--error-500); }
    .strength-fill.fair { width: 50%; background: var(--warning-500); }
    .strength-fill.good { width: 75%; background: var(--success-500); }
    .strength-fill.strong { width: 100%; background: var(--success-600); }
    
    .strength-text {
        font-size: 0.75rem;
        color: var(--text-tertiary);
    }
    
    /* OTP Styles */
    .otp-container {
        margin: 1.5rem 0;
    }
    
    .otp-inputs {
        gap: 0.75rem;
    }
    
    .otp-input {
        width: 45px;
        height: 45px;
        border: 2px solid var(--border-light);
        border-radius: var(--radius-lg);
        text-align: center;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .otp-input:focus {
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px var(--primary-100);
        outline: none;
    }
    
    .otp-input.filled {
        border-color: var(--color-primary);
        background: var(--primary-50);
    }
    
    .otp-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-primary);
    }
    
    .otp-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Button Styles */
    .btn-primary {
        background: var(--color-primary);
        border: none;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-lg);
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        background: var(--color-primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }
    
    .btn-link {
        color: var(--color-primary);
        text-decoration: none;
        font-weight: 500;
    }
    
    .btn-link:hover {
        color: var(--color-primary-dark);
    }
    
    /* Benefits Styles */
    .benefits-content {
        max-width: 500px;
    }
    
    .benefits-title {
        font-size: 1.5rem;
        font-weight: 700;
        font-family: var(--font-heading);
    }
    
    .benefit-item {
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-xl);
        padding: 1.5rem;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .benefit-item p {
        color: white;
    }
    
    .benefit-item:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
    }
    
    .success-stats {
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-xl);
        padding: 2rem;
        backdrop-filter: blur(10px);
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: var(--success-500);
    }
    
    .stat-label {
        font-size: 0.875rem;
        opacity: 0.8;
        color: white;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .signup-container {
            max-width: 450px !important;
        }
        
        .benefits-content {
            padding: 2rem;
        }
    }
    
    @media (max-width: 992px) {
        .signup-container {
            max-width: 100% !important;
            margin: 1rem;
        }
        
        .welcome-title {
            font-size: 2.2rem;
        }
        
        .benefits-title {
            font-size: 2.8rem;
        }
        
        .benefit-item {
            padding: 1.25rem;
        }
    }
    
    @media (max-width: 768px) {
        .signup-page {
            min-height: 100vh;
            padding: 1rem 0;
        }
        
        .signup-container {
            padding: 2rem 1.5rem;
            margin: 0.5rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
        }
        
        .welcome-title {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        
        .welcome-subtitle {
            font-size: 1rem;
        }
        
        .brand-name {
            font-size: 1.5rem;
        }
        
        .logo-img {
            height: 50px !important;
        }
        
        .progress-indicator {
            gap: 0.75rem;
        }
        
        .step-number {
            width: 35px;
            height: 35px;
            font-size: 0.9rem;
        }
        
        .step-label {
            font-size: 0.8rem;
        }
        
        .progress-line {
            width: 50px;
        }
        
        .form-label {
            font-size: 0.95rem;
            margin-bottom: 0.4rem;
        }
        
        .form-control {
            padding: 0.875rem 1rem;
            font-size: 1rem;
        }
        
        .btn {
            padding: 0.875rem 1.5rem;
            font-size: 1rem;
        }
        
        .btn-lg {
            padding: 1rem 1.5rem;
        }
        
        .input-group-text {
            padding: 0.875rem 1rem;
        }
        
        .otp-input {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }
        
        .otp-inputs {
            gap: 0.5rem;
        }
        
        .otp-title {
            font-size: 1.5rem;
        }
        
        .otp-subtitle {
            font-size: 0.9rem;
        }
        
        .benefit-item {
            padding: 1rem;
            margin-bottom: 1rem;
        }
        
        .benefit-icon {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }
        
        .benefit-item h5 {
            font-size: 1rem;
        }
        
        .benefit-item p {
            font-size: 0.85rem;
        }
        
        .success-stats {
            padding: 1.5rem;
        }
        
        .stat-number {
            font-size: 1.5rem;
        }
        
        .stat-label {
            font-size: 0.75rem;
        }
    }
    
    @media (max-width: 576px) {
        .signup-container {
            padding: 1.5rem 1rem;
            margin: 0.25rem;
        }
        
        .welcome-title {
            font-size: 1.6rem;
        }
        
        .welcome-subtitle {
            font-size: 0.9rem;
        }
        
        .brand-name {
            font-size: 1.3rem;
        }
        
        .logo-img {
            height: 45px !important;
        }
        
        .progress-indicator {
            gap: 0.5rem;
        }
        
        .step-number {
            width: 30px;
            height: 30px;
            font-size: 0.8rem;
        }
        
        .step-label {
            font-size: 0.7rem;
        }
        
        .progress-line {
            width: 40px;
        }
        
        .form-control {
            padding: 0.75rem 0.875rem;
            font-size: 0.95rem;
        }
        
        .btn {
            padding: 0.75rem 1.25rem;
            font-size: 0.95rem;
        }
        
        .btn-lg {
            padding: 0.875rem 1.25rem;
        }
        
        .input-group-text {
            padding: 0.75rem 0.875rem;
        }
        
        .form-check-label {
            font-size: 0.9rem;
        }
        
        .otp-input {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
        
        .otp-inputs {
            gap: 0.4rem;
        }
        
        .otp-title {
            font-size: 1.3rem;
        }
        
        .otp-subtitle {
            font-size: 0.85rem;
        }
        
        .benefit-item {
            padding: 0.875rem;
            margin-bottom: 0.75rem;
        }
        
        .benefit-icon {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
        
        .benefit-item h5 {
            font-size: 0.9rem;
        }
        
        .benefit-item p {
            font-size: 0.8rem;
        }
        
        .success-stats {
            padding: 1.25rem;
        }
        
        .stat-number {
            font-size: 1.25rem;
        }
        
        .stat-label {
            font-size: 0.7rem;
        }
        
        .login-cta p {
            font-size: 0.9rem;
        }
    }
    
    @media (max-width: 480px) {
        .signup-container {
            padding: 1.25rem 0.75rem;
        }
        
        .welcome-title {
            font-size: 1.5rem;
        }
        
        .welcome-subtitle {
            font-size: 0.85rem;
        }
        
        .form-control {
            padding: 0.7rem 0.75rem;
            font-size: 0.9rem;
        }
        
        .btn {
            padding: 0.7rem 1rem;
            font-size: 0.9rem;
        }
        
        .btn-lg {
            padding: 0.8rem 1rem;
        }
        
        .input-group-text {
            padding: 0.7rem 0.75rem;
        }
        
        .otp-input {
            width: 35px;
            height: 35px;
            font-size: 0.9rem;
        }
        
        .otp-inputs {
            gap: 0.3rem;
        }
        
        .otp-title {
            font-size: 1.2rem;
        }
        
        .otp-subtitle {
            font-size: 0.8rem;
        }
        
        .benefit-item {
            padding: 0.75rem;
        }
        
        .benefit-icon {
            width: 35px;
            height: 35px;
            font-size: 0.9rem;
        }
        
        .benefit-item h5 {
            font-size: 0.85rem;
        }
        
        .benefit-item p {
            font-size: 0.75rem;
        }
        
        .success-stats {
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 1.1rem;
        }
        
        .stat-label {
            font-size: 0.65rem;
        }
        
        /* Mobile touch improvements */
        .form-control, .btn, .input-group-text, .otp-input {
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        
        .form-control:focus, .otp-input:focus {
            font-size: 16px !important; /* Prevents zoom on iOS */
        }
        
        .btn:active {
            transform: scale(0.98);
        }
        
        .otp-input:active {
            transform: scale(0.95);
        }
    }
    
    /* Additional mobile improvements */
    @media (max-width: 480px) {
        .form-control, .btn, .otp-input {
            min-height: 44px; /* Minimum touch target size */
        }
        
        .input-group-text {
            min-height: 44px;
        }
        
        .btn-close {
            min-width: 44px;
            min-height: 44px;
        }
        
        .step-number {
            min-width: 44px;
            min-height: 44px;
        }
    }