
        
        /* Unique Classes for Login Container */
        .gseo-auth-container {
            width: 100%;
            max-width: 1200px;
            padding: 20px;
        }
        
        .gseo-auth-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 30px;
        }
        
        .gseo-auth-card {
            width: 100%;
            max-width: 1000px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--gseo-shadow-lg);
            display: flex;
            flex-wrap: wrap;
        }
        
        .gseo-auth-form-section {
            flex: 1;
            padding: 40px;
            min-width: 300px;
            background: white;
        }
        
        .gseo-auth-info-section {
            flex: 1;
            background: var(--gseo-gradient);
            color: white;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 300px;
        }
        

        
        .gseo-logo img {
            max-width: 150px;
            height: auto;
        }
        
        .gseo-form-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--gseo-dark);
            text-align: center;
        }
        
        .gseo-form-group {
            margin-bottom: 20px;
        }
        
        .gseo-form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--gseo-dark);
        }
        
        .gseo-input-wrapper {
            position: relative;
        }
        
        .gseo-form-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--gseo-border);
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .gseo-form-input:focus {
            outline: none;
            border-color: var(--gseo-primary);
            box-shadow: 0 0 0 3px rgba(12, 74, 110, 0.1);
        }
        
        .gseo-password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--gseo-gray);
            cursor: pointer;
            font-size: 18px;
            padding: 5px;
        }
        
        .gseo-password-toggle:hover {
            color: var(--gseo-primary);
        }
        
        .gseo-form-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
            margin-bottom: 20px;
        }
        
        .gseo-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .gseo-btn-primary {
            background: var(--gseo-gradient);
            color: white;
        }
        
        .gseo-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(12, 74, 110, 0.2);
        }
        
        .gseo-btn-outline {
            background: transparent;
            color: var(--gseo-primary);
            border: 2px solid var(--gseo-primary);
        }
        
        .gseo-btn-outline:hover {
            background: var(--gseo-primary);
            color: white;
        }
        
        .gseo-toggle-text {
            text-align: center;
            margin-top: 20px;
            color: var(--gseo-gray);
        }
        
        .gseo-toggle-link {
            color: var(--gseo-primary);
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
        }
        
        .gseo-toggle-link:hover {
            text-decoration: underline;
        }
        
        .gseo-form-toggle {
            display: none;
        }
        
        .gseo-info-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .gseo-info-text {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .gseo-info-features {
            margin-top: 20px;
        }
        
        .gseo-info-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .gseo-info-feature i {
            margin-right: 15px;
            font-size: 20px;
        }
        
        /* Modal Styles */
        .gseo-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .gseo-modal.active {
            display: flex;
        }
        
        .gseo-modal-content {
            background: white;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            padding: 30px;
            position: relative;
            animation: gseo-modalFadeIn 0.3s ease;
        }
        
        @keyframes gseo-modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gseo-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .gseo-modal-title {
            font-size: 24px;
            font-weight: 600;
            color: var(--gseo-dark);
        }
        
        .gseo-modal-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--gseo-gray);
        }
        
        .gseo-modal-close:hover {
            color: var(--gseo-dark);
        }
        
        .gseo-modal-body {
            margin-bottom: 20px;
        }
        
        .gseo-modal-footer {
            display: flex;
            justify-content: center;
        }
        
        /* Alert Styles */
        .gseo-alert {
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: none;
        }
        
        .gseo-alert-error {
            background: #fef2f2;
            color: #b91c1c;
            border-left: 4px solid #b91c1c;
        }
        
        .gseo-alert-success {
            background: #f0fdf4;
            color: #166534;
            border-left: 4px solid #166534;
        }
        
        .gseo-alert.active {
            display: block;
        }
        
        /* Password Validation Styles */
        .gseo-password-requirements {
            margin-top: 10px;
            font-size: 14px;
            color: var(--gseo-gray);
        }
        
        .gseo-requirement {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }
        
        .gseo-requirement i {
            margin-right: 8px;
            font-size: 12px;
        }
        
        .gseo-requirement.valid i {
            color: #10b981;
        }
        
        .gseo-requirement.invalid i {
            color: #ef4444;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .gseo-auth-card {
                flex-direction: column;
            }
            
            .gseo-auth-info-section {
                padding: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .gseo-auth-form-section {
                padding: 30px 20px;
            }
            
            .gseo-auth-info-section {
                padding: 30px 20px;
            }
            
            .gseo-form-actions {
                flex-direction: column;
                gap: 15px;
            }
            
            .gseo-btn {
                width: 100%;
            }
        }
