    /* Left Panel - Enhanced Check Circle Styling */
    .left-panel {
        flex: 1;
        background: linear-gradient(135deg, #6a1b9a, #8e24aa);
        color: white;
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    
    .brand-title h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .brand-title p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 2.5rem;
    }
    
    /* Enhanced Features List with Check Circles */
    .features-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .features-list li {
        margin-bottom: 1.8rem;
        display: flex;
        align-items: flex-start;
        position: relative;
        padding-left: 15px;
    }
    
    .icon-wrapper {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        margin-right: 1.2rem;
        flex-shrink: 0;
        position: relative;
    }
    
    .icon-wrapper i {
        font-size: 1rem;
        color: white;
    }
    
    .features-list span {
        font-size: 1.05rem;
        line-height: 1.5;
        display: inline-block;
        padding-top: 2px;
    }
    
    /* Animated Check Circles */
    .features-list li:hover .icon-wrapper {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
        transition: all 0.3s ease;
    }
    
    /* Decorative Elements */
    .left-panel::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        z-index: 1;
    }
    
    .left-panel::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -30px;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        z-index: 1;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .left-panel {
            padding: 2.5rem 1.5rem;
        }
        
        .brand-title h1 {
            font-size: 2.2rem;
        }
        
        .brand-title p {
            font-size: 1rem;
        }
        
        .features-list span {
            font-size: 0.95rem;
        }
        
        .icon-wrapper {
            width: 24px;
            height: 24px;
            margin-right: 1rem;
        }
        
        .icon-wrapper i {
            font-size: 0.9rem;
        }
    }
    /* Main container styles */
    body {
        background-color: #f8f9fa;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .auth-container {
        display: flex;
        min-height: 100vh;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }
    
    /* Card styling */
    .auth-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        width: 100%;
        max-width: 1000px;
        display: flex;
    }
    
    /* Left panel styles */
    .left-panel {
        flex: 1;
        background: linear-gradient(135deg, #6a1b9a, #9c27b0);
        color: white;
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Right panel styles */
    .right-panel {
        flex: 1;
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Brand title styling */
    .brand-title h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .brand-title p {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 2rem;
    }
    
    /* Features list styling */
    .features-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .features-list li {
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
    }
    
    .icon-wrapper {
        margin-right: 1rem;
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Form styling */
    .auth-form {
        width: 100%;
    }
    
    .form-title {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: #333;
    }
    
    .form-subtitle {
        color: #666;
        margin-bottom: 2rem;
        font-size: 0.95rem;
    }
    
    .form-control {
        padding: 12px 15px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
        transition: all 0.3s;
    }
    
    .form-control:focus {
        border-color: #9c27b0;
        box-shadow: 0 0 0 0.2rem rgba(156, 39, 176, 0.25);
    }

    
    
    .btn-primary {
        background-color: #6a1b9a;
        border: none;
        padding: 12px 20px;
        font-weight: 500;
        width: 100%;
        border-radius: 8px;
        transition: all 0.3s;
    }
    
    .btn-primary:hover {
        background-color: #7b1fa2;
    }
    
    /* Tabs styling */
    .nav-tabs {
        border-bottom: none;
        margin-bottom: 2rem;
    }
    
    .nav-tabs .nav-link {
        border: none;
        color: #666;
        font-weight: 500;
        padding: 0.5rem 1rem;
        margin-right: 1rem;
        position: relative;
    }
    
    .nav-tabs .nav-link.active {
        color: #6a1b9a;
        background: transparent;
    }
    
    .nav-tabs .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #6a1b9a;
        border-radius: 3px;
    }
    
    /* Account toggle link */
    .account-toggle {
        text-align: center;
        margin-top: 1.5rem;
        color: #666;
        font-size: 0.95rem;
    }
    
    .account-toggle a {
        color: #6a1b9a;
        font-weight: 500;
        text-decoration: none;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .auth-card {
            flex-direction: column;
        }
        
        .left-panel {
            padding: 2rem;
        }
        
        .right-panel {
            padding: 2rem;
        }
    }